@import url('https://fonts.googleapis.com/css2?family=Krub:wght@500&display=swap');
@font-face {
  font-family: 'Satoshi';
  src: url('ruta-a-tu-font/Satoshi-Bold.woff2') format('woff2');
  font-weight: bold;
}

body {
  margin: 0;
  overflow: hidden;
  background: linear-gradient(to top, #a0d8ef, #e0f7fa);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
}

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

.content {
  position: absolute;
  top: 30vh;
  z-index: 1;
  padding: 0 1rem;
  width: 100%;
  max-width: 90%;
}


h1 {
  font-family: 'Satoshi', sans-serif;
  font-size: 3.9rem;
  color: #5da1d6a7;
  margin: 0;
}

.subtitle {
  font-family: 'Krub', sans-serif;
  color: #4d5f9a92;
  max-width: 100%;
  margin: 0rem auto 0;
  font-size: 1rem;
  line-height: 0.5;
}

@media (max-width: 480px) {
  .content {
    top: 20vh;
  }

  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
    line-height: 1.3;
    max-width: 90%;
    margin: 0 auto;
    white-space: normal;
  }
}
