@import 'https://fonts.googleapis.com/css?family=Rubik+One';
@import 'https://fonts.googleapis.com/css?family=Dosis';

.quienes{
    /*background-color: rgb(224, 224, 224);*/
    background-image: url(../img/Fondo7.png);
    border-radius: 20px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(50,50,50);
    font-family: 'Dosis', sans-serif;
    background-attachment: fixed;
    width: 90%;
    margin: auto;
    margin-bottom: 10px;
}

.tituloQuienes{
 /*background-color: beige;*/
 width: 50%;
 color:rgb(255, 255, 255);
 margin: auto;
 font-size: 40px;
 text-align: center;
 margin-bottom: 10px;
 margin-top: 5px;
}
.espacio1{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.txtQuienes{
    background: linear-gradient(to right, rgb(83, 83, 83), rgb(164, 54, 54));
    color:rgb(255, 255, 255);
    font-size: 15px;
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 20px;
    width: 40%;
    padding: 10px 20px 20px 20px;
    border: 2px solid rgb(230, 12, 38); 
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
}

.imgQuienes{
    width: 20%;
}


@media only screen and (max-width : 600px) {
    .tituloQuienes{
        width: 95%;
    }
    .espacio1{
        flex-direction: column;
    }
    .txtQuienes{
        width: 90%;
    }
    .imgQuienes{
        width: 80%;
        margin-bottom: 10px;
    }
}