@import "tailwindcss";

@keyframes shimmer {
    0% {
        background-position: -500px 0;
    }

    100% {
        background-position: 500px 0;
    }
}

.shimmer {
    background: linear-gradient(to right, #e0e0e0 8%, #f8f8f8 18%, #e0e0e0 33%);
    background-size: 1000px 100%;
    animation: shimmer 1.5s infinite linear;
}