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

/* Custom Animations */
@keyframes wave {

    0%,
    100% {
        height: 0.5rem;
    }

    50% {
        height: 1.25rem;
    }
}

.animate-wave {
    animation: wave 1s infinite ease-in-out;
}

.animation-delay-100 {
    animation-delay: 0.1s;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-300 {
    animation-delay: 0.3s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}