.animate-pop {
  font-size: 5rem;
  font-weight: bold;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  transform: translateY(2.5rem); /* similar to translate-y-10 */
  position: relative;
  z-index: 10;
}

.animate-pop span {
  opacity: 0;
  transform: scale(0.8);
  animation: pop 0.5s ease-out forwards;
}

.animate-pop span:nth-child(1) {
  animation-delay: 0s;
}
.animate-pop span:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-pop span:nth-child(3) {
  animation-delay: 0.4s;
}
.animate-pop span:nth-child(4) {
  animation-delay: 0.6s;
}
.animate-pop span:nth-child(5) {
  animation-delay: 0.8s;
}

@keyframes pop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}
