@keyframes bounce1 {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }

  @keyframes bounce2 {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }

  @keyframes bounce3 {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-15px);
    }
  }

  .animate-bounce1 {
    animation: bounce1 1s ease-in-out infinite;
  }

  .animate-bounce2 {
    animation: bounce2 1s ease-in-out infinite;
    animation-delay: 0.2s;
  }

  .animate-bounce3 {
    animation: bounce3 1s ease-in-out infinite;
    animation-delay: 0.4s;
  }