/*basic reset */
            
*{
    margin: 0;
    padding: 0;
}

body {background: black;}
canvas {display:block;}

html, body {
  height: 100%; /* Ensure the html and body take 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: 100vh; /* Full height of the viewport */
  z-index: -1; /* Send it to the back */
}

#mobile-menu {
  background-color: rgba(0, 0, 0, 0.9); /* Adjust the background color as needed */
  padding: 1rem; /* Add padding for better spacing */
  border-radius: 0.5rem; /* Optional: add rounded corners */
}