.loader-container {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    background: url("/favicon.svg") center
        no-repeat;
    z-index: 1;
    animation: spin-anim 3.6s linear infinite;
}

.spinner {
    justify-content: center;
    align-items: center;
    animation: spin-anim 3.6s linear infinite reverse;
}

@keyframes spin-anim {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}