.animate-delay-0 { animation-delay: 0s; }
.animate-delay-1 { animation-delay: 50ms; }
.animate-delay-2 { animation-delay: 100ms; }
.animate-delay-3 { animation-delay: 150ms; }
.animate-delay-4 { animation-delay: 200ms; }
.animate-delay-5 { animation-delay: 250ms; }
.animate-delay-6 { animation-delay: 300ms; }
.animate-delay-7 { animation-delay: 350ms; }

body {
    font-family: 'DM Sans', 'Nunito Sans';
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat';
}

@keyframes slideIn {
    0% { top: 50px; }
    100% { top: 0; }
}
.animate-slideIn {
    animation: slideIn 300ms ease-in forwards;
    position: relative;
}
