html, body {
    margin: 0;
    padding: 0;
    background: #272733;
    color: #F4EEE6;
}

.startup-loader {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #272733;
}

.startup-loader-dots {
    display: flex;
    align-items: center;
    gap: 12px;
}

.startup-loader-dots span {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: #E6DED3;
    opacity: 0.45;
    animation: loader-wave 0.45s ease-in-out infinite;
}

.startup-loader-dots span:nth-child(2) {
    animation-delay: 0.075s;
}

.startup-loader-dots span:nth-child(3) {
    animation-delay: 0.15s;
}

@keyframes loader-wave {
    0%, 100% {
        transform: translateY(0) scale(0.9);
        opacity: 0.45;
    }

    50% {
        transform: translateY(-8px) scale(1);
        opacity: 1;
    }
}
