@keyframes textShimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.bg-clip-text {
    background-size: 200% auto;
    animation: textShimmer 3s ease infinite;
}