.sobre_mi {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: rgb(187, 224, 248);
}

.sobre_mi__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_mi__texto {
    line-height: normal;
    margin-bottom: 1rem;
}

.sobre_mi__plataformas {
    color: var(--fuente-ceniza-oscuro);
    font-weight: 700;
    font-size: 1.2rem;
    font-family: var(--montserrat);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-bottom: 1rem;
}

.sobre-nosotros__texto--division {
    color: var(--fuente-ceniza-oscuro);
    font-weight: 700;
}



.sobre_mi__imagen {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 95%;
    height: 320px;
    width: 220px;
    
    
}

@media screen and (min-width: 1024px) {
    .sobre_mi {
        display: flex;
    }
    .sobre_mi__contenido {
        margin-right: 3rem;
    }
    .sobre_mi__titulo {
        text-align: left;
    }
    .sobre-nosotros__texto--division {
        border-bottom: 1px solid var(--background-ceniza-medio);
        padding-bottom: 1.5rem;
    }
    .sobre_mi__imagen {
        display: block;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        border-radius: 30%;
        height: 400px;
        width: 400px;
    }
}