/* Minimal styles for the homepage to override conflicts and set the font */
body {
    font-family: 'Poppins', sans-serif;
}

/* This is the key fix. It overrides the 'z-index: 1' from your main style.css,
  preventing the <main> element from blocking clicks on the canvas.
  !important ensures this rule always wins.
*/
main {
    z-index: auto !important;
}