/* Set the body to full screen and remove margins */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }
  
  canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;  /* Ensures the canvas is behind all other content */
  }
  