app-quienes-somos .container{
    background-color: white;
    padding: 10px;
    display: flex;              
    align-items: center;        
    gap: var(--bg-gap);        
    box-sizing: border-box;
    flex: 1;
}
app-quienes-somos .text{
    height: var(--bg-height);
    width: var(--bg-width);
    color: black;
    display:flex;
    flex-direction: column;
    align-items: center;
}
app-quienes-somos .h2{
    font-family: 'Times New Roman', Times, serif;
    font-size:40; 
}
app-quienes-somos .p {
    font-family: 'Times New Roman', Times, serif;
    font-size: 20px;
}
app-quienes-somos .logo{
    display: block;
    width: 100%;
}

@media screen and (max-width: 768px) {
    app-quienes-somos .container{
        flex-direction: column;
        height: auto;
        width: 100vw;
    }
    app-quienes-somos .logo{
        width: 100vw;
    }
}