 html{
    box-sizing:border-box;
    min-height:100%;
}
*,:after,:before{
    box-sizing:inherit
}
body{
    font-family: 'Lato', sans-serif;
    margin:0;
    color:#fff;
    background-color: #000;
}

a {
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid white;
    color:  white;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 13px;
}
a:hover {
    background-color: rgba(0, 0, 0, .5);
}


.row {
    text-align: center;
}

.residencial, .parques {
    padding: 10% 5%;
    display: flex;
    align-items: center;
    background-size: cover;
    min-height: 50vh;
}
.residencial {
    background-image: url(../home-img/residencial2.jpg);

}
.parques {
    background-image: url(../home-img/parques.jpg);
}
.textos {width: 100%;}
.textos p {
    letter-spacing: 2px;
    font-size: 22px;
}

@media screen and (min-width: 576px) {
    .row {
        display: flex;
        height: 100vh;
    }
    .residencial, .parques {
        width: 50%;
        opacity: .5;
    }
    .residencial:hover, .parques:hover {
        opacity: 1;
    }
    .residencial {
        text-align: right;
    }
    .parques {
        text-align: left;
    }
}