html,
body {
  margin: 0;
  padding: 0;
}

body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: black;
  touch-action: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

canvas {
  z-index: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  cursor: none;  /* This will hide the cursor */
}


#info-box {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(25, 25, 25, 0.85); /* Slightly off-black for a softer look */
    color: white;
    padding: 15px;
    border-radius: 8px;
    z-index: 1;
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2); /* A subtle border */
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3); /* A soft drop shadow for depth */
    opacity: 0; /* Initially transparent */
    transition: opacity 1s ease-out; /* Smooth transition for opacity */

}
