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

body {
    touch-action: none;
}

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

#app a {
    text-decoration: none;
    color: #fff;
    font-size: 40px;

}

.hero {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center; /* centra el texto */
  padding: 0 20px; /* espacio a los lados */
}


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

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

h2 {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  max-width: 700px; /* controla el ancho */
  line-height: 1.6; /* espacio entre líneas */
}

#canvas {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

@media (max-width: 768px) {

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 16px;
  }

  #app a {
    font-size: 18px;
  }

}