@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.1s;
}
.fade-in-delay-2 {
    animation-delay: 0.2s;
}
.fade-in-delay-3 {
    animation-delay: 0.3s;
}
.fade-in-delay-4 {
    animation-delay: 0.4s;
}
.fade-in-delay-5 {
    animation-delay: 0.5s;
}
