@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: 2vw;
  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 p {
    margin: 0;
    text-align: right;
    font-style: italic;
    font-size: 6.5vw;
    font-weight: 700;
    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 p {
    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;
    font-size: 5vw;
    padding-top: 5px;
    font-weight: 600;
  }

  a {
    text-decoration: none;
    color: white;
  }

  .x {
    display: inline-block;
    color: white;
    width: 15%;
  }

  .mico {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    color: white;
  }

  .mobile {
    margin-bottom: 2vh;
  }

  .desktop {
    display: none;
  }

  .mcaa{
    width: 20%;
  }
.mcaa i{
  font-size: 30px;
}

}

@media screen and (min-width: 1000px) {

  .mobile {
    display: none;
  }

  .desktop {
    width: 100%;
    height: 100%;
    aspect-ratio: 18 / 9;
    background-size: cover;
    /* Ensures full coverage */
    background-position: center;
    /* Keeps image centered */
    background-repeat: no-repeat;
    /* Prevents repeating */
    transition: opacity 1s ease-in-out;
    margin-bottom: 2vh;
  }

  .d-menu {
    width: 100%;
    height: 100%;
    margin: auto;
    position: relative;
    top: 30%;

  }

  .h1 {
    width: 95%;
    margin-left: 2.5%;
  }

  .h1 h1 {
    width: fit-content;
    font-size: 5vw;
    color: aliceblue;
    background: linear-gradient(to right, orange, gold, rgb(173, 173, 19), red);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: scale(1.3);
    margin-left: 7%;
  }

  .menu-d {
    width: 80%;
    margin-right: 2%;
    float: right;
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
  }

  .menu-d a {
    text-decoration: none;
    font-size: 1.6vw;
    color: rgb(0, 0, 0);
    font-weight: 600;
  }

  .menu-d a i {
    margin-right: 15px;
  }

  .menu-d a:hover {
    background-color: rgb(66, 9, 9);
    padding: 10px 15px;
    color: white;
    border-radius: 15px;
        transition: all 300ms;
  }

}