/* Spinner and fonts in base.css */

body {
    background-color: #cffadc;
}

@keyframes scan {
    0% {
        top: 0%;
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Shared animations in base.css */

.animate-scan {
    animation: scan 2.5s linear infinite;
}

/* scaleIn moved to base.css */