.hero {
  position: relative;
  background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='77.308' height='50' patternTransform='scale(2) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='%23ffffffff'/><path d='M12.885 25v25h25.769v-5.77l-12.886-9.753ZM51.538 0v25h12.885v25h12.885V19.23L64.422 9.476ZM25.77 0v25h12.885V0Z'  stroke-width='1' stroke='none' fill='%23ffcdcdff'/><path d='M38.654 0v25h12.884V0Zm25.77 25-12.887 9.615-12.88 9.616-.003-.002V50h25.769ZM25.768 0 12.883 9.615.003 19.231 0 19.229V50h12.885V25h12.884z'  stroke-width='1' stroke='none' fill='%23ffbbb6ff'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
  mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: black;
  text-align: center;
  z-index: 1;
}

/* .hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  max-width: none;
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: 0;
  transition: transform 0.1s linear;
  pointer-events: none;
} */

.hero-content {
  position: relative;
  z-index: 1;
  padding: 1rem 2rem;
}

.hero-content h1 {
  font-size: 4rem;
  margin: 0;
}

/* fade in text */
.typing-paragraph {
  margin-top: 1rem;
  width: 100%;
  max-width: 800px;
  min-height: 2em;
  font-size: 1.8em;
  font-family: Arial, sans-serif;
  line-height: 1.5;
  color: black;
  text-align: center;           /* Center the text inside the paragraph */
  margin: 0 auto;               /* Center the paragraph block itself */
}

.word {
  opacity: 0;
  display: inline;
  animation: fadeIn 0.4s ease forwards;
}

.word::after {
  content: " ";
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* cursor */

.cursor {
  display: inline-block;
  font-weight: bold;
  margin-left: 4px;
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

