html,
body {
    min-height: 100%;
    background: #020617;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fade-up 0.55s ease-out both;
}


html,
body {
    min-height: 100%;
    background: #f8fafc;
}

    html.dark,
    html.dark body {
        background: #020617;
    }

body {
    margin: 0;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fade-up 0.55s ease-out both;
}