@font-face {
  font-family: smallFont;
  src: url(../pixelfont.ttf);
}

body {
  background-color: black;
  color: white; 
}
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden; 
    height: 100%; 
    background: black;
  }

  .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;  
    height: 100%; 
  }
  #backButton {
    position: absolute;
    font-family: smallFont;
    top: 20px;
    left: 20px;
    padding: 10px 15px;
    font-size: 40px;
    background-color: yellow;
    color: red;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  
  #backButton:hover {
    opacity: 1;
  }
  
  
  #gameContainer {
      position: absolute;
      left: 50%;
      transform: translateX(-50%); 
      bottom: 0;
      width: 100vw;
      height: auto;
  }

#gameGuide {
    position: absolute;
    top: 50%; 
    left: 85%; 
    transform: translate(-50%, -50%); 
    box-shadow: 10px 10px 20px 50px rgba(0, 0, 0, 0.5);
}

#gameGuide img {
    width: 25vw;
    height: auto;
}
