html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #03050b;
    
    /* Native CSS block to prevent pinch-to-zoom gestures on touch devices */
    touch-action: none; 
}

#starCanvas {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: block;
    
    /* Enabled to allow mouse movements and clicks to register on the canvas elements */
    pointer-events: auto; 
}