:root {
    --icon-color: rgb(54, 129, 209);
    --text-color: rgb(255, 255, 255);
    --button-color: rgba(255, 255, 255, 0.7);
}

:root[data-theme="light"] {
    /*--icon-color: rgb(30, 96, 167);
    --text-color: rgb(7, 51, 99);
    --button-color: rgba(29, 93, 161, 0.7);*/
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: calc(100vh - 90px);
    justify-content: center;
    align-items: center;
    transition-duration: 0.3s;
    z-index: 1;
}

.text-container {
    z-index: 1;
    font-size: 2rem;
    text-align: center;
    justify-content: center;
}

.text-container img {
    max-height: 130px;
}

.icon, .icon svg {
    height: 70px;
    width: auto;
    color: var(--icon-color);
}

.text {
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    color: var(--text-color);
    margin-top: 20px;
    transition-duration: 0.3s;
}

.button-container {
    position: relative;
    display: flex;
    z-index: 1;
    margin-top: 20px;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.button {
    border: 2px solid rgba(0, 0, 0, 0);
    border-radius: 0.8rem;
    background-color: transparent;
    transition-duration: 0.3s;
    text-align: center;
}

.button a {
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.45rem 0.7rem 0.45rem 0.7rem;
    display: block;
    font-family: "Acme", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--button-color);
    transition-duration: 0.3s;
}

.button:hover {
    border: 2px solid var(--button-color);
}

.button:hover a {
    color: var(--icon-color);
}

@media (max-width: 1000px) {
    .text-container {
        max-width: 90%;
    }

    .button-container {
        flex-direction: column;
        align-items: stretch;
        max-width: 90%;
    }
}