 /* General styles */
 html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: black;
    overflow: hidden;
    font-family: Arial, sans-serif;
  }

  canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; /* Background animation */
  }

  #overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    max-width: 600px;
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent rounded background */
    border-radius: 20px; /* Rounded corners */
    color: white;
    z-index: 2; /* On top of the canvas */
    box-shadow: 0px 0px 20px rgba(255, 0, 0, 0.5); /* Red glow */
  }

  #overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  #overlay p {
    font-size: 1.2rem;
    line-height: 1.5;
  }