body {
    --content-max-width: 1000px;
    /* Footer bar slightly wider than main column; tweak --footer-extra-width only */
    --footer-extra-width: 180px;

    background-color: #f5f5f5;
    font-family: 'Lato', sans-serif;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background-image: url('../images/bg_image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

main {
    flex: 1 1 auto;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: var(--content-max-width);
    margin: 50px auto 0 auto;
    padding-bottom: 48px;
}

.card {
    background-color: #FFFFFF;
    border-radius: 30px;
    border: 1px solid #DEDEDE;
    padding: 20px;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px 0 #00000014;
}

.line {
    width: 90%;
    height: 2px;
    border: none;
    background-color: #636A77;
    margin: 20px 0;
}


.card h1 {
    font-size: 40px;
    font-weight: 700;
    color: #1D232B;
    text-align: center;
    margin: 30px 0 15px 0;
}

.description {
    max-width: 500px;
    font-size: 22px;
    font-weight: 400;
    color: #636A77;
    text-align: center;
    margin: 15px 0 50px 0;
}

.logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.maintenance-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.site-footer {
    flex-shrink: 0;
    box-sizing: border-box;
    width: min(95%, calc(var(--content-max-width) + var(--footer-extra-width)));
    margin: 0 auto;
    background-color: #D91835;
    padding: 20px;
    border-radius: 12px 12px 0 0;
}

.site-footer__inner {
    max-width: var(--content-max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.site-footer__disclaimer {
    margin: 0;
    max-width: 600px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    color: #fefefe;
    text-align: center;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 400;
}

.site-footer__legal a {
    color: #fefefe;
    text-decoration: none;
}

.site-footer__sep {
    color: #fefefe;
    user-select: none;
}