 *{
  box-sizing: border-box;
  margin: 0;
}

header {
  margin: 0.25vw 0.5vw;
  width: 99vw;
  border-width: 2px;
  border-style: solid;
  border-color: black;
  background-color:goldenrod;
  height: auto;
  min-height: 15vh;
  text-align: center;
  font-size: xx-large;
  font-weight: bolder;
}
nav,
footer {
  margin: 0 0.5vw 0.25vw;
  width: 99vw;
  height: auto;
  float: left;
  min-height: 10vh;
  border: 2px solid ;
  background-color:  black;
  color: rgb(223, 198, 87);
  font-size: x-large;
  font-weight: bold;
  text-align: center;
  border-radius: 0 0 5px 5px;
}
aside {
  width: 15vw;
  float: left;
  height: auto;
  min-height: 65vh;
  border: 2px dotted rgb(255, 255, 255, 00.);
  background-color: blanchedalmond;
  border-radius: 5px 0 0 5px;
  text-align: center;
  color: #ab00df;
  margin-left: 0.5vw;
  font-weight: bolder;
}
main {
  width: 100vw;
  float: left;
  border: 2px groove gold;
  background-color: black;
  height: auto;
  min-height: 65vh;
  margin: 0 0.25vw;
  text-align: center;
  font-weight: 600;
  color: goldenrod;
  padding-top: 10px;
}
section {
  width: 18vw;
  border: 2px solid #551a88;
  border-radius: 0 5px 5px 0;
  height: auto;
  min-height: 65vh;
  background-color: bisque;
  float: right;
  margin-right: 0.5vw;
}
article {
  width: 98%;
  margin: 1% 1% 0 1%;
  height: 20vh;
  border: 1px solid black;
  background-color: goldenrod;
}
footer {
  background-color: black;
  margin-top: 0.25vh;
  font-weight: bolder;
  color: whitesmoke;
}

nav li {
  list-style-type: none;
  background-color: goldenrod;
  margin-top: 0.5vh;
  width: 12%;
  float: left;
  margin-right: 2%;
  height: auto;
  min-height: 8vh;
}
nav li:hover {
  background-color: rgb(22, 22, 22);
  color: white;
  font-size: x-large;
  border-radius: 10px;
}
a > li {
  color: black;
  font-weight: bolder;
}
nav > ul {
  display: contents;
}
tr:nth-child(even) {
  background-color: black;
}
tr:last-child {
  background-color: black;
  font-size: xx-large;
}
td:hover,
th:hover {
  background-color: black;
  color: white;
  font-size: xx-large;
}

@media only screen and (max-width: 600px) {
  aside,
  section {
    display: none;
  }
  header {
    font-size: large;
  }
  label {
    display: inline-block;
    width: 80%;
  }
  main {
    width: 98vw;
    margin: 0.25vh 0.5vw;
    text-align: justify;
  }
  nav li {
    width: 95%;
    margin: 0 2% 1.5vmin;
  }
  iframe {
    width: 98%;
  }
  table {
    width: 98%;
  }
}

@media only screen and ((min-width: 600px) and (max-width:992px)) {
  aside,
  section {
    display: none;
  }
  nav {
    width: 30vw;
    min-height: 80vmax;
    height: auto;
    float: left;
  }
  nav li {
    width: 95%;
    margin: 0 2% 1.5vh;
  }
  main {
    width: 68vw;
    text-align: justify;
    margin: 0.25vh 0.25vw;
  }
  iframe {
    width: 98%;
  }
  table {
    width:98;

  }
}