.logo {
    width: 100%;
    max-width: 256px;
    margin: 0 auto;
}

.loader-container {
    height: 100vh;
    display: flex;
    gap: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* HTML: <div class="loader"></div> */
.loader {
    width: 100%;
    max-width: 256px;
    height: 10px;
    background:
        linear-gradient(90deg, #0000, #DCF166) left -50px top 0/50px 20px no-repeat #dcf1663f;
    animation: l2 1s infinite linear;
}

@keyframes l2 {
    100% {
        background-position: right -50px top 0
    }
}