#section_profil {
    height: 100%;
    width: 100vw;
    color: #ffecd7;
}

.profil_content {
    display: flex;
    margin-top: 20px;
    flex-direction: row;
}

.profil_texte {
    flex: 0 0 60%;
}

.profil_texte > p {
    margin-bottom: 2rem;
    line-height: 1.4;
}

.profil_texte > p > a {
    color: #008286;
    text-decoration: none;

}

.text_highlighted {
    color: #008286;
    font-style: normal;
}

.photo > img {
    max-height: 100%;
    width: 65%;
    position: relative;
    left: 100px;
    top: 10%;
}

@media (max-width:420px){
    #section_profil .section__content{
        width: 80vw;
    }
    
    .profil_content {
        flex-direction: column;
    }

    .photo > img {
        left: 0;
    }
}
    
