.orb-container {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.hero-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  color: white;
  text-align: center;
  font-size: clamp(1.65rem, 4vw, 2.6rem);
  font-weight: 600;
}

.hero-tagline {
  color: white;
  text-align: center;
  max-width: 450px;
  margin: 1rem auto 0;
  font-size: clamp(0.8rem, 2vw, 1.1rem);
  font-weight: 300;
  opacity: 0.9;
}

.hero-button-container {
  padding-top: 1rem;
  margin: auto;
  display: flex;
  justify-content: space-around;
  gap: 10px;
}

.hero-button-container button:first-child {
  border: none;
  background-color: white;
}

.hero-button-container button:last-child {
  background-color: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.hero-button-container button {
  white-space: nowrap;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: transform 0.1s ease;
  @media only screen and (min-width: 600px) {
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
  }
}

.hero-button-container button:active {
  transform: scale(0.92);
  transition: transform 0.05s ease;
}

.text-type {
  display: inline-block;
  white-space: pre-wrap;
}

.text-type__cursor {
  margin-left: 0.25rem;
  display: inline-block;
  opacity: 1;
  color: white;
}

.text-type__cursor--hidden {
  display: none;
}

.shiny-text {
  background: linear-gradient(
    110deg,
    #fff 33%,
    #fffacd 50%,
    #fff 66%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: shine 2.5s ease-in-out infinite;
}

@keyframes shine {
  0% {
    background-position: 100%;
  }
  100% {
    background-position: -100%;
  }
}

.shiny-text.disabled {
  animation: none;
}

.Hero_heroSection__zv0xW{background-color:#0a0a0f;border-radius:0 0 3rem 3rem}

/*# sourceMappingURL=0890fd135e2b7d68.css.map*/