@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.stagger-animation {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.stagger-animation:nth-child(1) {
    animation-delay: 0.1s;
}

.stagger-animation:nth-child(2) {
    animation-delay: 0.2s;
}

.stagger-animation:nth-child(3) {
    animation-delay: 0.3s;
}

.stagger-animation:nth-child(4) {
    animation-delay: 0.4s;
}

.stagger-animation:nth-child(5) {
    animation-delay: 0.5s;
}

.stagger-animation:nth-child(6) {
    animation-delay: 0.6s;
}

.stagger-animation:nth-child(7) {
    animation-delay: 0.7s;
}

.stagger-animation:nth-child(8) {
    animation-delay: 0.8s;
}

.stagger-animation:nth-child(9) {
    animation-delay: 0.9s;
}

.stagger-animation:nth-child(10) {
    animation-delay: 1.0s;
}

footer .footer-link {
    color: rgb(96 165 250);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-link:hover {
    color: rgb(147 197 253);
    text-decoration: underline;
}
