body {
  /* background-color: darkslategray; */
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
/* ---------------HEADER STYLES---------------------- */

#headerContainer {
  display: flex;
  justify-content: center;
}
header {
  overflow: hidden;
  background-color: #1f1f1f;
  padding: 20px 10px;
  width: 100vw;
}

/* Style the header links */
header a {
  float: left;
  color: rgb(194, 194, 194);
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 10px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
header a:hover {
  text-underline-offset: 5px;
  text-decoration: underline white;
}

/* Style the active/current link*/
header a.active {
  text-underline-offset: 5px;
  text-decoration: underline white;
}

/* Float the link section to the right */
header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  header a {
    float: none;
    display: block;
    text-align: left;
  }
  header-right {
    float: none;
  }
}

/* ---------------BODY STYLES---------------------- */
div.container {
  display: flex ;
  border: 1px solid black;
  justify-content: center;
  height: 100%;
  width: 100%;
  margin: 0%;
  padding: 0%;
  /* background-color: darkslategray; */
}

table {
  width: 75vw;
  padding:10vh 0 0 0 ;
  margin: 25px 0px;
  /* border: 1px solid black; */
  border-collapse: collapse;
}

table thead tr {
  color: black;
}

tr {
  line-height: 3vh;
  word-wrap: normal;
  background-color: #fff;
  color: black;
}

td {
  padding: 0rem 0.25rem;
  text-align: center;
  border-top: 1px solid darkslategray;
  border-bottom: 1px solid darkslategray;
}

td a {
  color:rgb(13, 46, 135);
}

td a:visited {
  color:rgb(53, 54, 56);
}

#bodyRows {
  border-left: 1px solid darkslategray;
  border-right: 1px solid darkslategray;
}

/* ---------------FONT STYLES---------------------- */
.roboto-font {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}