/* Place this at the end of your existing CSS file */

/* Entry animation keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply entry animation to the body or main container */
body, .col-12 {
    animation: fadeIn 1s ease-in-out;
}

/* Add styles for buttons to animate */
button, .buttonn, .butt {
    opacity: 0;
    animation: fadeInButtons 1s ease-in-out forwards;
    animation-delay: 1s;
}

@keyframes fadeInButtons {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
body {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

body.fade-out {
    opacity: 0;
}