
/* basic styles for black background and crosshair cursor */
// body {
// 	background: #000;
// 	margin: 0;
// }

// canvas {
// 	display: block;
// }


floating-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allows clicks to pass through the canvas */
  background: rgba(255, 255, 255, 0.5); /* Adjust transparency here */
}