@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #fff0e4;
    overflow: hidden; 
}

@media (max-width: 600px) {
    body {
        overflow-y: auto; 
    }
}

.page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    align-items: center;
} 
.page___header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
}
.page___header__figure {
    width: fit-content;
    background-color: #693716;
    padding: 20px;
    border-radius: 50%;
}

.page___header__figure__logo {
    max-height: 96px;
}

.page___header__link {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
}

.page___header__description {
    color: #4c4c4c;
    text-align: center;
    padding: 0 1rem;
    line-height: 1.5rem;
}

.page__main {
    /* flex: auto; */
    padding-bottom: 1rem;
}

.page__main__order {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page__main__order__link {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    border: 1px solid #dadada;    
    padding: 1rem 4rem;
    line-height: 2rem;
    border-radius: 1rem;
    background: #08ff6f url('../img/brand-whatsapp.svg') no-repeat 1rem center;
}
.page__main__order__link:hover {
    background-color: #00e05d;
}

.page___footer {
    /* display: flex;
    flex-direction: column;
    align-items: center; */
    text-align: center;
    padding: 1rem 0;
    width: 100%;
    background-color: #f6f6f6;
    margin-top: auto;
}

.page___footer__description {
    color: #4c4c4c;
}