/* style.css */

/* A simple reset to remove default browser spacing and hide scrollbars.
  This ensures our canvas can cleanly fill the entire viewport.
*/
html, body {
    margin: 0;
    padding: 0;
    overflow: hidden; 
    background-color: #000000; /* A pure black background */
}

/* Ensures the canvas element doesn't have any extra space around it
  and behaves like a solid block.
*/
canvas {
    display: block;
}
