.animated-text {
  display: inline-block;
  animation: fadeIn 0.5s ease-in-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-text span {
  display: inline-block;
  animation: fadeInLetter 0.5s ease-in-out forwards;
  opacity: 0;
}

@keyframes fadeInLetter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated-text span:nth-child(1) {
  animation-delay: 0.1s;
}

.animated-text span:nth-child(2) {
  animation-delay: 0.2s;
}

.animated-text span:nth-child(3) {
  animation-delay: 0.3s;
}

.animated-text span:nth-child(4) {
  animation-delay: 0.4s;
}

.animated-text span:nth-child(5) {
  animation-delay: 0.5s;
}

body {
  font-family: 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

