body {
    margin: 0;
    background-color: #09090b;
    color: #f4f4f5;
    font-family: system-ui, -apple-system, sans-serif;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* Container for the startup loader */
#root {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.loader {
    width: 48px;
    height: 48px;
    border: 3px solid #27272a;
    border-bottom-color: #f5d442;
    border-radius: 50%;
    animation: rotation 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a1a1aa;
    /* brighter zinc-400 */
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}