:root{
    --primary: #514744;
    --alt: #4e815b;
    --third: #942937;
    --yellow: #c7ae8f; 
    --background: rgb(227, 227, 227); 
    --button-color: #b8dae7; 
}

*{
    margin: 0;
    padding: 0;
    text-decoration: none;

    font-family: 'Outfit', sans-serif;
}

body{
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--background);
}

.button {
    background-color: var(--button-color);
    color:  black;
    height: 3rem;
    width: 12rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
    font-size: 1.2rem;
    user-select: none;
    text-align: center;
    border: 0px;
}

.shadow {
    box-shadow: 2px 1px 20px 8px rgba(184,184,184,0.7);
    -webkit-box-shadow: 2px 1px 20px 8px rgba(184,184,184,0.7);
    -moz-box-shadow: 2px 1px 20px 8px rgba(184,184,184,0.7);
}

.width-container{
    height: 100%;
    width: 85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.half-container{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    position: relative;
}

.fourty-container{
    width: 45%;
    height: 100%;
    display: flex;
    align-items: start;
    flex-direction: column;
    position: relative;
    text-align: justify;
}

.tf-container{
    width: 25%; 
    position: relative;
    
}

.tf-container>*{
    height: auto;
    width: 100%;
}

.row{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

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

.mt-2{
    margin-top: 2rem;
}
.mr-2{
    margin-right: 2rem;
}
.ml-2{
    margin-left: 2rem;
}
.mb-2{
    margin-bottom: 2rem;
}

.mt-5{
    margin-top: 5rem;
}
.mr-5{
    margin-right: 5rem;
}
.ml-5{
    margin-left: 5rem;
}
.mb-5{
    margin-bottom: 5rem;
}

.text{
    text-align: justify;
}

section {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.mt-2{
    margin-top: 2rem;
}

input[type="number"]{
    height: 3.7rem;
    display: block;
    border-radius: 5px;
    border: 0;
    text-align: center;
}


@media only screen and (max-width: 85rem){
    .width-container{
        width: 90% !important;
        flex-direction: column;
        align-items: center !important;
    }

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

    .half-container{
        width: 100%;
    }

    .desktop{
        display: none !important;
    }

    input[type="number"]{
        width: 100%;
        margin-bottom: 1rem;
    }
}