<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* PROFIL */

.wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 100px 8.5vw;
    background-color: #e7ecef;
}

.presentationGenerale {
    width: 70%;
}

#profile {
    width: 30%;
    max-width: 250px;
    height: fit-content;
    border-radius: 5px;
    box-shadow: 0 5px 10px #000;
    filter: grayscale(1);
}

.competences {
    display: flex;
    flex-direction: row;
}

.competencesItem {
    flex: auto;
    width: 30%;
    list-style: inside;
}


/* ==================== Tablette ==================== */

@media all and (max-width: 1250px) {
    .wrapper {
        padding: 80px 8.5vw;
    }
}


/* ==================== Smartphone ==================== */

@media all and (max-width: 850px) {
    .wrapper {
        padding: 60px 3vw;
        background-color: #e7ecef;
        flex-direction: column;
        align-items: center;
    }
    .presentationGenerale {
        width: 100%;
    }
    #profile {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .formation {
        flex-direction: column;
    }
    .formationCard {
        width: 100%;
    }
}</pre></body></html>