.sectionBlanc {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 10px 0;
    padding: 10px 0;
}

.sectionVert {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    background-color: #093C09;
    color: white;
    margin: 10px 0;
    padding: 10px 0;
}

.lien1 {
    text-decoration: none;
    color: #46484A;
}

.lien1:hover {
    color: #058205;
    text-decoration: underline;
}

.lien2 {
    text-decoration: none;
    color: white;
}

.lien2:hover {
    color: orange;
    text-decoration: underline;
}

/*=========================== Responsive =================*/

@media screen and (max-width: 480px) {
    h2 {
        font-size: 1.2em;
    }

    section img {
        height: 10em;
    }

    .sectionBlanc:first-of-type {
        margin-top: 3.5rem
    }

    .sectionBlanc {
        padding: 2rem;
    }

    .sectionBlanc h2 {
        padding: 0 0 0 2rem;
    }

    .sectionVert {
        padding: 2rem;
    }

    .sectionVert h2 {
        padding: 0 2rem 0 0;
    }
}

@media (min-width: 481px) and (max-width: 1024px) {
    .sectionBlanc:first-of-type {
        margin-top: 3.5rem;
    }
}
