body, html {
    margin: 0;
    padding: 0;
    height: 200%; /* Ensure there's enough content to scroll */
    overflow-x: hidden;
  }
  
  canvas {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
}
  body {
    background-color: black;
    color: white;
    font-family: Arial, sans-serif;
  }
  
  .hero {
    height: 100vh;
    background-color: black;
    /* margin-bottom: 100px; */
    position: relative;
    z-index: 101;
  }
  
  .body-section {
    height: 200vh;
    background-color: white;
    color: black;
    position: relative;
    z-index: 101;

    transition: transform 0.1s ease-out;
  }
  
  .footer {
    height: 50vh;
   
  }
  
  /* .canvas {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
} */