main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.animated-header {
  text-align: center;
  margin: 50px 0;
  font-size: 2.5rem;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  color: #333;
  display: inline-block;
  position: relative;
}
.animated-header .animated-text {
  display: inline-block;
}
.animated-header .animated-text span {
  opacity: 0;
  animation: fadeInOut 2s ease-in-out infinite;
  display: inline-block;
}
.animated-header .animated-text span:nth-child(1) {
  animation-delay: 0s;
}
.animated-header .animated-text span:nth-child(2) {
  animation-delay: 0.2s;
}
.animated-header .animated-text span:nth-child(3) {
  animation-delay: 0.4s;
}
.animated-header .animated-text span:nth-child(4) {
  animation-delay: 0.6s;
}
.animated-header .animated-text span:nth-child(5) {
  animation-delay: 0.8s;
}
.animated-header .animated-text span:nth-child(6) {
  animation-delay: 1s;
}
.animated-header .animated-text span:nth-child(7) {
  animation-delay: 1.2s;
}
.animated-header .animated-text span:nth-child(8) {
  animation-delay: 1.4s;
}
.animated-header .animated-text span:nth-child(9) {
  animation-delay: 1.6s;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

/*# sourceMappingURL=main.css.map */