/*basic reset */
            
*{
    margin: 0;
    padding: 0;
}

body {background: black;}
canvas {display:block;}

html, body {
  height: 100%; /* Ensure the body takes full height */
  margin: 0; /* Remove default margin */
}

canvas {
  position: absolute; /* Position the canvas absolutely */
  top: 0; /* Align to the top */
  left: 0; /* Align to the left */
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  z-index: -1; /* Send it to the back */
}