body, html, #app {
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  touch-action: none;
  font-family: "Montserrat", sans-serif;
}

#app {
  height: 100%;
}

.hero {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 0 20px;
}

h2 {
  margin: 0;
  color: white;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(0,0,0,0.7);
}

.links {
  display: flex;
  gap: 26px;
  margin-top: 10px;
}

.links a {
  color: white;
  font-size: 32px;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.links a:hover {
  transform: scale(1.18);
  opacity: 1;
}

#canvas {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}

/* Responsivo */
@media (max-width: 600px) {
  h2 {
    font-size: 32px;
  }

  .links a {
    font-size: 28px;
  }
}
