1
respuesta

No me queda acomoda la imagen cuando uso 1024 px

.sobre-nosotros {
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: var(--fuente-ceniza-oscuro);
    font-weight: 700;
}

.sobre_nosotros__titulo {
    color: var(--fuente-ceniza-oscuro);
    font-weight: 700;
    font-size: 1.5rem;
    font-family: var(--montserrat);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 1.25rem;
}

.sobre_nosotros__texto {
    line-height: normal;
    margin-bottom: 1rem;
}

.sobre_nosotros__plataformas {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 1rem;
}

.sobre-nosotros__texto--destacado{
    color: var(--fuente-ceniza-oscuro);
    font-weight: 700;
}



.sobre_nosotros__imagen{
    display: none;
}

@media screen and (min-width: 1024px) {
    .sobre_nosotros__imagen {
        display: block;
    }
}

me queda asi

Ingrese aquí la descripción de esta imagen para ayudar con la accesibilidad

1 respuesta

Hola Ricardo, creo que te faltó agregar

.sobre_nosotros {
        display: flex;
    }