/* DESKTOP STYLES */
/* -------- OVERLAY NAV STYLES ------- */

/* MOBILE STYLES */
.overlayNav {
  position: fixed;
  display: block;
  top: 0;
  background-color: #f9f9f9;
  height: 0vh;
  width: 100vw;
  z-index: 4;
  transition-timing-function: ease;
  transition: height 0.4s;
  overflow-x: hidden;
}

.menuX {
  position: absolute;
  width: 30px;
  right: 20px;
  top: 20px;
  transition: 0.5s;
}

.overlayList {
  position: relative;
  top: 12%;
  width: 50vw;
  height: 80vh;
  margin: auto;
}

.overlayList li {
  list-style: none;
  padding: 10px 0;
  margin-left: 10vw;
}

.overlayList a {
  font-family: Roboto;
  color: #000;
  font-size: 7vw;
  font-weight: 700;
  list-style: none;
  text-decoration: none;
  width: 100%;
  padding: 10px;
}

.overlayList a:hover {
  font-family: "Abril Fatface";
  color: #ffb039;
  font-size: 7vw;
  font-weight: 400;
  list-style: circle;
  text-decoration-line: underline;
  text-decoration-style: wavy;
  text-decoration-color: #3fa8c1;
  padding: 10px;
}

@media only screen and (min-width: 1000px) {
  .overlayNav {
    top: 0;
  }

  .menuX {
    position: absolute;
    width: 50px;
    right: 20px;
  }

  .overlayList {
    position: relative;
    top: 6%;
    width: 100%;
    /* text-align: center; */
    margin-top: 30px;
  }

  .overlayList li {
    list-style: none;
    padding: 10px 0;
    max-width: 40vw;
  }

  .overlayList a {
    font-size: 5vw;
  }

  .overlayList a:hover {
    font-size: 5vw;
  }
}
