html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden; /* This is the key property that prevents scrolling */
  position: fixed; /* This prevents bounce effects on iOS */
}


/* Make canvas cover full screen */
canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
}

/* The overlay div */
#play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column; /* Stack vertically */
  justify-content: center;
  align-items: center;
  width: 100vw; /* fill full width to prevent text from wrapping */
  z-index: 1;
}

#play a {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  white-space: nowrap;
  color: black;
  text-decoration: none;
}

#icon{
  width: 3rem;
}