@tailwind base;
@tailwind components;
@tailwind utilities;

@layer utilities {

    @keyframes shimmer {
        0% {
            background-position: 100% 0;
        }

        100% {
            background-position: -100% 0;
        }
    }

    .skeleton {
        @apply  bg-[linear-gradient(135deg,#E4E5E7_25%,_#f5f5f5_50%,_#E4E5E7_75%)] 
                bg-[length:200%_100%] 
                animate-[shimmer_1.5s_infinite];
    }
    
}