* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover; 
  z-index: -1; 
}


body {
  overflow-x: hidden; 
  min-height: 100vh; 
  display: flex;
  justify-content: center;
  align-items: center;
}



#discord-icon {
  display: none;
  position: fixed;
  top: 0%; 
  left: 15%; 
  width: 70vw; 
  height: auto; 
}

#menueyes1 {
  display: non;
  position: fixed;
  top: 5%; 
  right: 92%; 
  width: 6vw; 
  height: auto; 
}

#menueyes2 {
  display: none;
  position: fixed;
  top: 5%; 
  right: 92%; 
  width: 6vw; 
  height: auto; 
}


#menu6 {
  display: none;
  position: fixed;
  top: 5%;
  right: 2%;
  width: 6vw;
  height: auto;
  transition: transform 0.3s ease-in-out;
}

#menu6:hover {
  transform: scale(1.1); 
}


#huyrayu {
  display: noe;
  position: fixed;
  top: 1%; 
  left: 33%; 
  width: 35vw; 
  height: auto; 
  transition: transform 0.3s ease-in-out;
}

#huyrayu:hover {
  transform: scale(1.1); 
}

#menu1 {
  display: none;
  position: fixed;
  top: 9%; 
  left: 20%; 
  width: 12vw;
  height: auto; 
  transform: translate(-50%, -50%);
  
}



#menu2 {
  display: non; 
  position: fixed;
  top: 9%; 
  left: 80%; 
  width: 12vw; 
  height: auto; 
  transform: translate(-50%, -50%);
}

#menu3 {
  display: non; 
  position: fixed;
  top: 9%; 
  left: 40%; 
  width: 12vw; 
  height: auto; 
  transform: translate(-50%, -50%);
}

#menu4 {
  display: non; 
  position: fixed;
  top: 9%; 
  left: 60%; 
  width: 12vw; 
  height: auto; 
  transform: translate(-50%, -50%);
  
}


.menu-container {
  width: 100%; 
  height: 100%; 
  background-image: url('images/menu.png');
  background-size: cover; 
  position: relative;
}

#discord {
  display: non; 
  position: fixed;
  top: 9%; 
  left: 31%; 
  width: 8vw; 
  height: auto; 
  transform: translate(-50%, -50%);
}

#twitter {
  display: non; 
  position: fixed;
  top: 9%; 
  left: 70%; 
  width: 9%;
  height: auto; 
  transform: translate(-50%, -50%);
}

#maskuoff {
  display: non; 
  position: fixed;
  top: 9%; 
  left: 50%; 
  width: 7vw; 
  height: auto; 
  transform: translate(-50%, -50%);
}


@media (max-width: 768px) and (orientation: portrait) {
  body {
    visibility: hidden;
  }

  body::after {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-image: url('images/landscape1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    visibility: visible;
  }
}


@media (min-width: 769px) and (max-width: 1279px) and (orientation: portrait) {
  body {
    visibility: hidden;
  }

  body::after {
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    background-image: url('images/landscape2.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    visibility: visible;
  }
}

/* i made this for hidden menu6 for tablet and phone :) */
@media (max-width: 1279px) {
  #menu6 {
    display: none !important;
  }
}

:root {
  --vh: 1vh;
}

#background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100); 
  object-fit: cover; 
  z-index: -1; 
}

