.animate-float {
    animation: float 6s ease-in-out infinite;
}
.animate-pulse {
    animation: pulse 3s ease-in-out infinite;
}
.animate-bounce {
    animation: bounce 3s ease-in-out infinite;
}
.animate-scale {
    animation: scale .5s ease-out;
}
.animate-slide-up {
    animation: slide-up .6s ease-out;
}
.animate-fade-in {
    animation: fade-in .5s ease-out;
}

@keyframes float{
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse{
    50% {
        opacity: .7;
    }
    0%, 100% {
        opacity: 1;
    }
}

@keyframes bounce{
    0%, 100% {
        transform: translateY(0);
        animation-timing-function: 
        cubic-bezier(.8, 0, 1, 1);
    }

    50% {
        transform: translateY(-20px);
        animation-timing-function: 
        cubic-bezier(0, 0, .2, 1);
    }
}

@keyframes scale{
    0% {
        transform: scale(.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes slide-up{
    0% {
        transform: translateY(20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes fade-in{
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}