.ripple-container {
  overflow: hidden;
}

.ripple-text {
  display: inline-block;
}

.ripple-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
}

.ripple-text.animate span {
  animation: ripple 0.5s ease-out forwards;
}

@keyframes ripple {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

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

