/* Animasi lompat untuk setiap huruf */
@keyframes jump {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Styling untuk teks */
.animate-hbd span {
    display: inline-block;
    animation: jump 1s ease-in-out infinite; /* Durasi animasi diperpanjang menjadi 1 detik */
    font-size: 1.5rem;
    color: #ff6347; /* Warna menarik */
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

/* Memberikan delay pada setiap huruf untuk efek lompat secara berurutan */
.animate-hbd span:nth-child(1) {
    animation-delay: 0s;
}

.animate-hbd span:nth-child(2) {
    animation-delay: 0.1s;
}

.animate-hbd span:nth-child(3) {
    animation-delay: 0.2s;
}

.animate-hbd span:nth-child(4) {
    animation-delay: 0.3s;
}

.animate-hbd span:nth-child(5) {
    animation-delay: 0.4s;
}

.animate-hbd span:nth-child(6) {
    animation-delay: 0.5s;
}

.animate-hbd span:nth-child(7) {
    animation-delay: 0.6s;
}

.animate-hbd span:nth-child(8) {
    animation-delay: 0.7s;
}

.animate-hbd span:nth-child(9) {
    animation-delay: 0.8s;
}

.animate-hbd span:nth-child(10) {
    animation-delay: 0.9s;
}

.animate-hbd span:nth-child(11) {
    animation-delay: 1s;
}

.animate-hbd span:nth-child(12) {
    animation-delay: 1.1s;
}

.animate-hbd span:nth-child(13) {
    animation-delay: 1.2s;
}

.animate-hbd span:nth-child(14) {
    animation-delay: 1.3s;
}

.animate-hbd span:nth-child(15) {
    animation-delay: 1.4s;
}

.animate-hbd span:nth-child(16) {
    animation-delay: 1.5s;
}

.animate-hbd span:nth-child(17) {
    animation-delay: 1.6s;
}

.animate-hbd span:nth-child(18) {
    animation-delay: 1.7s;
}

.animate-hbd span:nth-child(19) {
    animation-delay: 1.8s;
}

.animate-hbd span:nth-child(20) {
    animation-delay: 1.9s;
}

.animate-hbd span:nth-child(21) {
    animation-delay: 2s;
}

.animate-hbd span:nth-child(22) {
    animation-delay: 2.1s;
}

.animate-hbd span:nth-child(23) {
    animation-delay: 2.2s;
}

.animate-hbd span:nth-child(24) {
    animation-delay: 2.3s;
}

.animate-hbd span:nth-child(25) {
    animation-delay: 2.4s;
}