@tailwind base;
@tailwind components;
@tailwind utilities;

@layer utilities {
        @keyframes fade {
          0%, 100% { opacity: 0; }
          10%, 33% { opacity: 1; }
        }
        .fade-slide:nth-child(1) {
          animation: fade 9s infinite;
          animation-delay: 0s;
        }
        .fade-slide:nth-child(2) {
          animation: fade 9s infinite;
          animation-delay: 3s;
        }
        .fade-slide:nth-child(3) {
          animation: fade 9s infinite;
          animation-delay: 6s;
        }
      }