.typed-tagline-container {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 25px;
    font-weight: bold;
    color: #ffffff;
}

.typed-cursor {
    opacity: 1;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.bouncing-title span {
    display: inline-block;
    animation: bounce 1s ease-in-out infinite;
    color: white;
}

/* Stagger delay for each letter */
.bouncing-title span:nth-child(1) {
    animation-delay: 0s;
}

.bouncing-title span:nth-child(2) {
    animation-delay: 0.1s;
}

.bouncing-title span:nth-child(3) {
    animation-delay: 0.2s;
}

.bouncing-title span:nth-child(4) {
    animation-delay: 0.3s;
}

.bouncing-title span:nth-child(5) {
    animation-delay: 0.4s;
}

.bouncing-title span:nth-child(6) {
    animation-delay: 0.5s;
}

/* space */
.bouncing-title span:nth-child(7) {
    animation-delay: 0.6s;
}

.bouncing-title span:nth-child(8) {
    animation-delay: 0.7s;
}

.bouncing-title span:nth-child(9) {
    animation-delay: 0.8s;
}

.bouncing-title span:nth-child(10) {
    animation-delay: 0.9s;
}

.bouncing-title span:nth-child(11) {
    animation-delay: 1.0s;
}

.bouncing-title span:nth-child(12) {
    animation-delay: 1.1s;
}

.bouncing-title span:nth-child(13) {
    animation-delay: 1.2s;
}

.bouncing-title span:nth-child(14) {
    animation-delay: 1.3s;
}

.bouncing-title span:nth-child(15) {
    animation-delay: 1.4s;
}

.bouncing-title span:nth-child(16) {
    animation-delay: 1.5s;
}

.bouncing-title span:nth-child(17) {
    animation-delay: 1.6s;
}

.bouncing-title span:nth-child(18) {
    animation-delay: 1.7s;
}

.bouncing-title span:nth-child(19) {
    animation-delay: 1.8s;
}

.bouncing-title span:nth-child(20) {
    animation-delay: 1.9s;
}

.bouncing-title span:nth-child(21) {
    animation-delay: 2.0s;
}

.bouncing-title span:nth-child(22) {
    animation-delay: 2.1s;
}

.bouncing-title span:nth-child(23) {
    animation-delay: 2.2s;
}

.bouncing-title span:nth-child(24) {
    animation-delay: 2.3s;
}




/* Bounce keyframes */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}