@media screen and (max-width: 1000px) {
  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
  }

  .mob-menu {
    widows: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .mhead {
    width: fit-content;
  }

  .mhead h1 {
    margin: 0;
    padding: 0;
    font-size: 10vw;
    margin-left: 3vw;
    padding-right: 4vw;
    margin-top: 1vh;
    color: gold;
    -webkit-text-stroke: 2px black;
    paint-order: stroke fill;
  }

  /* Firefox fallback */
  @supports not (-webkit-text-stroke: 2px black) {
    .mhead h1 {
      text-shadow: -2px -2px 0 black, 2px -2px 0 black, -2px 2px 0 black,
        2px 2px 0 black, -2px 0px 0 black, 2px 0px 0 black, 0px -2px 0 black,
        0px 2px 0 black;
    }
  }

  .mhead h3 {
    margin: 0;
    text-align: right;
    font-style: italic;
    font-size: 7vw;
    color: black;
    background-clip: text;
  }

  .logo {
    margin-right: 3vw;
    background: linear-gradient(to bottom right, black, black, black);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .mmc {
    display: flex;
    flex-direction: column;
    width: 85%;
    margin: auto;
    gap: 30px;
    font-size: 5vw;
  }

  .closebtn {
    position: absolute;
    font-size: 10vw;
    top: 0;
    right: 0;
    margin-right: 10%;
    margin-top: 5%;
  }

  .msh {
    width: fit-content;
    margin: auto;
    color: white;
    margin-bottom: 50px;
    margin-top: 0;
  }

  .msh h1 {
    font-size: 6.5vw;
    background: linear-gradient(to bottom, orange, rgb(246, 255, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
  }

  .msh h3 {
    text-align: right;
    font-style: italic;
    background: linear-gradient(to top, orange, rgb(249, 249, 38));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  a {
    text-decoration: none;
    color: white;
  }

  .x {
    display: inline-block;
    color: white;
    width: 15%;
  }

  .mico {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    color: white;
  }

  .mobile {
    margin-bottom: 2vh;
  }

  .desktop {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .mobile {
    display: none;
  }

  .desktop {
    width: 98%;
    margin-top: 1vh;
    margin-left: 2%;
  }

  .h1 h1 {
    font-size: 3vw;
    background: linear-gradient(to bottom, rgb(138, 137, 137), rgb(219, 144, 3), rgb(255, 0, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .menu-d {
    width: 80%;
    margin: auto;
    margin-top: 3vh;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .menu-d a {
    font-size: 1.7vw;
    color: black;
    font-weight: 600;
    transition: all 300ms;
  }

  .menu-d a i {
    margin-right: 10px;
    transition: all 300ms;
  }

  .menu-d a:hover {
    color:  rgba(5, 165, 214);
    transform: scale(1.2);
    border-radius: 35px;
    transition: all 300ms;
  }

  .menu-d a:hover i {
    color: rgba(5, 165, 214, 0.753);
    transition: all 300ms;
  }
}

a {
  text-decoration: none;
}
