body {
  margin: 0;
}
html {
  background-color: black;
}
canvas { 
  width:100%; 
  height:100%;
  filter: saturate(125%) brightness(100%) blur(3rem);
}
#overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 115, 0, 0.15); /* Red overlay with 50% opacity */
  mix-blend-mode: multiply; /* Try other modes like screen, overlay, etc. */
  z-index: 1;
  pointer-events: none; /* Makes overlay non-interactive */
}
#mobile {
  display: none;
  width: 30vh;
  max-width: 30vw;
  position: absolute;
  z-index: 1;
  justify-content: left;
  opacity: 50%;
}
.button {
  overflow: hidden;
  object-fit: cover;
}
#keys {
  position: fixed;
  display: none;
  bottom: 10px;
  left: 10px;
  z-index: 1;

  font-family: Arial, Helvetica, sans-serif;
  font-size: 16pt;
  color: white;
  text-shadow: black 1px 1px;
  white-space: pre-line;
  opacity: 50%;
  vertical-align: bottom;
  user-select: none; 
}
#volume_warning{
  display: block;
  justify-content: center;
  text-align: center;
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  text-shadow: black 1px 1px;
  z-index: 1;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
  user-select: none; 
  white-space: pre-line;
}
#options {
  position: fixed;
  right: 0;
  bottom: 0;
  margin: 1%;
  display: flex;
  mix-blend-mode: overlay;
  z-index: 1;
}
.option {
  width: 15vh;
  max-width: 15vw;
  overflow: hidden;
  opacity: 50%;
}
