body {
    margin: 0;
    height: 100vh;
    background: #111;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    display: flex;
    gap: 10px;
    font-size: 70px;
    font-family: Arial, Helvetica, sans-serif;
}

h1 span {
    animation: ripple 1.2s ease-in-out infinite;
}

/* Delays for each letter */
h1 span:nth-child(1) { animation-delay: 0s; }
h1 span:nth-child(2) { animation-delay: 0.1s; }
h1 span:nth-child(3) { animation-delay: 0.2s; }
h1 span:nth-child(4) { animation-delay: 0.3s; }
h1 span:nth-child(5) { animation-delay: 0.4s; }
h1 span:nth-child(6) { animation-delay: 0.5s; }
h1 span:nth-child(7) { animation-delay: 0.6s; }

@keyframes ripple {
    0%, 100% {
        transform: translateY(0) scale(1);
        color: white;
    }
    50% {
        transform: translateY(-15px) scale(1.2);
        color: #00f;
    }
}
