:root {
    --side-global-padding: 160px;
    --max-width: 1200px;
    --gold: #A96423;
    --bright-gold: #d9822b;
    --brown: #221F20;
    --black: #121212;
}

img {
    height: auto;
}

.btn {
    width: 200px;
    padding: 14px 0;
    align-self: center;
    background-color: var(--gold);
    color: white;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
}

.title {
    font-family: 'inter', sans-serif;
    font-size: 24px;
    color: var(--gold);
    padding-bottom: 16px;
    text-align: left;
}

.text {
    font-size: 14px;
    color: var(--black);
    padding-bottom: 16px;
    font-family: 'inter', sans-serif;
    text-align: justify;
}

.title {
    width: 100%;
    text-align: left;
    text-transform: uppercase;
    font-size: 24px;
    padding-bottom: 16px;
    font-weight: bold;
    color: var(--gold);
}

@media screen and (min-width: 768px) and (max-width: 992px) {
    :root {
        --side-global-padding: 86px;
    }
}

@media screen and (min-width: 576px) and (max-width: 768px) {
    :root {
        --side-global-padding: 48px;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --side-global-padding: 24px;
    } 
}
