body, html, #app {
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  touch-action: none;
}

#app {
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

.hero {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px; /* Space between the Title and Tagline */
}

h1, h2 {
  margin: 0;
  padding: 0;
  color: white;
  text-shadow: 0 0 20px rgba(0, 0, 0, 1);
  line-height: 100%;
  user-select: none;
  text-align: center;
}

h1 {
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px; 
}

h2 {
  font-size: 16px; /* <-- MUCH SMALLER NOW */
  font-weight: 400; 
  letter-spacing: 2px; /* Spread out the letters slightly */
  text-transform: none; /* Let it be written as a normal sentence */
  opacity: 0.8; /* Slightly faded for a premium "startup" look */
}

#canvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -1; /* Keeps the tunnel behind the text */
}

/* Make it look good on mobile phones too */
@media (max-width: 768px) {
  h1 { font-size: 50px; }
  h2 { font-size: 14px; padding: 0 20px; line-height: 1.5; }
}