@font-face {
    font-family: "VCR";
    src: url("/hsim/assets/fonts/vcr.ttf");
}

body {
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
  color: white;
  font-family: "VCR";
  background-color: #1E3B11;
  image-rendering: pixelated;
}

#banner {
  z-index: -100;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100vh;
  min-width: 100%;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

#logo {
  z-index: 4372;
  position: fixed;
  bottom: 1vh;
  left: -1.2vw;
  width: 65%;
  max-height: 100vh;
  transition: opacity 0.3s ease;
}

.test {
  width: 1vw;
  overflow-wrap: break-word;
}

.mobile {
  display: none;  
}

@media (max-aspect-ratio: 1/1) {
  .mobile {
    display: block;  
  }
  .desktop {
    display: none;  
  }
}