.makeAnOffer{
    width: 100%;
    height: 16vh;
   
}

.offerElements{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
    align-items: center;
}

.offerElements h1{
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif ;
    font-size: 45px;
    margin-left: 150px;
    font-weight: bold;
}

.butonOferta{
    margin-right: 150px;
    width: 200px;
    height: 60px;
    background-color: white;
    border: 4px solid #EE4B2B;
    color: #EE4B2B;
    font-size: 16px;
}

.butonOferta:hover{
    background-color: #EE4B2B;
    color: white;
}

@media(max-width:700px){

    .makeAnOffer{
        height: 25vh;
    }

    .offerElements{
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .offerElements h1{
        font-size: 35px;
        margin:0;
    }

    .butonOferta{
        display: block;
        margin: auto;
        margin-top: 40px;
    }
}
