html, body {
    height: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    background:
        linear-gradient(180deg, #FFF 18.75%, rgba(255, 255, 255, 0.00) 100%) no-repeat,
        url('../images/com/revival_background.png') no-repeat center center fixed;
    background-size: 100% 100%, cover;
    font-family: Roboto;
    overflow-y: auto;
}

.container {
    margin-top: 75px;
    padding: 0 20px 40px;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    min-height: 85vh;
}

.logo-top img {
    max-width: 200px;
    height: auto;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;

    width: 220px;
    height: 220px;
    padding: 25px;

    background-color: #FFF;
    border: 1px solid #D3D0D0;
    border-radius: 19px;

    text-decoration: none;
    color: inherit;
}

.card img {
    max-width: 100%;
    height: auto;
}

.divider {
    width: 30px;
    height: 3px;
    background-color: #D9D9D9;
}

.redirect-button {
    width: 160px;
    height: 33px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.background-red {
    background-color: #E0393F;
    color:#FFF;
}

.background-blue {
    background-color: #353798;
    color:#FFF;
}

.copyright-text {
    margin-top: 40px;
    color: #484848;
    text-align: center;
    font-size: 14px;
}

.text-top {
    font-weight: 500;
    font-size: 28px;
    line-height: 1.15;
    text-align: center;
    color: #484848;
}

.text-bottom {
    font-weight: 300;
    font-size: 28px;
    line-height: 1.15;
    text-align: center;
    color: #484848;
}

.link-text {
    font-weight: 500;
    font-size: 15px;
    line-height: 1.07;
    text-align: center;
}

@media (max-width: 600px) {
    .container {
        margin-top: 40px;
    }

    .text-top,
    .text-bottom {
        font-size: 20px;
    }

    .cards-container {
        flex-direction: column;
    }

    .card {
        width: 200px;
        height: 200px;
    }
}