body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Orbitron', sans-serif;
}

.hero {
  height: 100vh;
  background: url('https://cdn.prod.website-files.com/684cd0993ac58740ba0c2e26/684cd0993ac58740ba0c2eb6_head%20v3.webp') no-repeat center center/cover;
  position: relative;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 2;
  padding: 0 1rem;
}

canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

/* Responsive Typography */
.overlay h1 {
  font-size: 4rem;
}

.overlay p {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .overlay h1 {
    font-size: 2.5rem;
  }

  .overlay p {
    font-size: 1.1rem;
  }
}

