/* style.css */

/* Reset margins, padding, prevent scrolling, set full‐screen canvas background */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: #000;

}



/* Ensure canvas fills the viewport, blocks selection/touch scrolling */
canvas {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 90vh;
  touch-action: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Optional: make sure all images aren’t draggable */
img {
  pointer-events: none;
  user-drag: none;
  user-select: none;
}