.welcome-letter-quote {
  font-size: 120px;
  line-height: 0.8;
  font-family: Georgia, serif;
}

#welcome-letter {
  animation: fadeInUp 0.6s ease-out;
}

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

#welcome-letter > div > * {
  animation: fadeInScale 0.5s ease-out backwards;
}

#welcome-letter > div > *:nth-child(1) {
  animation-delay: 0.1s;
}
#welcome-letter > div > *:nth-child(2) {
  animation-delay: 0.15s;
}
#welcome-letter > div > *:nth-child(3) {
  animation-delay: 0.2s;
}
#welcome-letter > div > *:nth-child(4) {
  animation-delay: 0.25s;
}
#welcome-letter > div > *:nth-child(5) {
  animation-delay: 0.3s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
