html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

@media (min-width: 768px) {
    html {
        scroll-padding-top: 140px;
    }
}

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

.animate-fade-in {
    animation: fade-in 0.8s ease-out forwards;
}

.animate-fade-in-delay-1 {
    opacity: 0;
    animation: fade-in 0.8s ease-out 0.2s forwards;
}

.animate-fade-in-delay-2 {
    opacity: 0;
    animation: fade-in 0.8s ease-out 0.4s forwards;
}

.animate-fade-in-delay-3 {
    opacity: 0;
    animation: fade-in 0.8s ease-out 0.6s forwards;
}

.delay-1000 {
    animation-delay: 1s;
}