.main {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.redirect-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 33.8125rem;
    background: rgba(115, 179, 222, 0.32);
    padding: 32px 42px;
    border-radius: 12px;
}

.logo {
    width: 10.51875rem;
    height: auto;
}

.countdown-stat {
    display: flex;
    justify-content: center;
    font-family: Commissioner, sans-serif;
    padding-top: 32px;
    padding-bottom: 32px;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.171875rem;
}

.countdown-stat .document-title {
    max-width: 12rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.countdown-stat .second {
    font-weight: 700;
}

.continue-btn {
    width: 10.5rem;
    height: 3rem;
    color: white;
    background: #1AA5F5;
    border-radius: 1.875rem;
    border: none;

    font-family: Commissioner, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.redirect-text {
    font-family: Roboto, sans-serif;;
    font-size: 0.875rem;
    padding-top: 32px;
}

@media (max-width: 768px) {
    .logo {
        width: 80px;
    }

    .redirect-card {
        width: 300px;
    }

    .countdown-stat {
        font-size: 12px;
    }

    .redirect-text {
        font-size: 12px;
        padding-left: 20px;
        padding-right: 20px;
    }

}