body {
    font-family: 'Inter', sans-serif;
    background-color: #020617;
    color: #E2E8F0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
}

h1 {
    color: #F1F5F9;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.5rem;
    letter-spacing: -0.03675rem;
}

h2 {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem
}


.container {
    display: flex;
    padding: 5.125rem 3.875rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    top: 50%;
    gap: 1.5rem;
    background-color: #0F172A;
    border-radius: 0.5rem;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    margin-top: 8%;
}

.loader {
    display: flex;
    gap: 0.25rem;
}

.dot {
    height: 16px;
    width: 16px;
    border-radius: 50%;
    animation: scaling 2.5s ease-in-out infinite;
}

@keyframes scaling {
    0%, 100% {
        transform: scale(0.2);
        background-color: #334155;
    }
    40% {
        transform: scale(1);
        background-color: rgba(71, 85, 105, 0.16);
    }
    50% {
        transform: scale(1);
        background-color: #1E293B;
    }
}

.dot:nth-child(0) {
    animation-delay: (0 s);
}

.dot:nth-child(1) {
    animation-delay: (0.2 s);
}

.dot:nth-child(2) {
    animation-delay: (0.4 s);
}

.line {
    border-top: solid rgba(71, 85, 105, 0.08);
    width: 100%;
    text-align: center;
    line-height: 2.25rem
}


@media screen and (max-width: 600px) {
    h1 {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 1rem;
    }
}
