* {
  color: white;
  font-family: Bree Serif, Helvetica, sans-serif;
}
body {
  margin: 0%;
  background-color: rgb(29, 28, 28);
}

header {
  width: 100%;
  height: 9vh;
  display: flex;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  background: black;
  /* border: solid 1px; */
  padding: 0px 10px 0px 10px;
  justify-content: space-between;
}
h3 {
  /* border: solid 1px; */
  width: 20vw;
  text-align: center;
}

nav {
  /* border: solid 1px; */
  width: 50vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
a {
  text-decoration: none;
  color: white;
}
a:hover {
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 1),
    0px 0px 10px rgba(255, 255, 255, 1), 0px 0px 15px rgba(255, 255, 255, 1);
  color: aqua;
}

.active {
  color: aqua;
  text-shadow: 0px 0px 5px rgba(255, 255, 255, 1),
    0px 0px 10px rgba(255, 255, 255, 1);
}
iframe {
  margin-top: 9.2vh;
  height: 90vh;
  width: 100%;
  /* border: solid 1px; */
}

.menu {
  /* border: solid 1px; */
  width: 80px;
  margin-right: 20px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}
@media only screen and (max-width: 600px) {
  .menu {
    display: flex;
  }
  nav {
    display: none;
  }
  a {
    margin: 5px;
    border: solid 2px;
    height: 90%;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    /* box-shadow: aquamarine 0px 5px 15px; */
    /* color: black; */
  }
}
.list {
  border: solid 2px;
  height: 200px;
  width: 150px;
  position: absolute;
  top: 6vh;
  left: 35vw;
  display: flex;
  flex-direction: column;
  text-align: center;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  box-shadow: aquamarine 0px 5px 15px;
  display: none;
  background-color: black;
}
