body {
    background-color: #fefefe;
    color: #331f1e;
    margin: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    & a, a:hover, a:active, a:visited {
        color: #331f1e;
        text-decoration: none;
        padding: 10px;
    }

    & img {
        height: 100px !important;
    }
}

ul {
    display: flex;
    margin: 0;
    
    & li {
        list-style-type: none;
        padding: 10px;
    }
    & .active, li:hover {
        border-bottom: solid 1px #331f1e;
    }
}

section {

    margin: 50px 0;

    & .bouton {
        background-color: #331f1e;
        color: #fefefe;
        padding: 10px;
        border-radius: 5px;
        display: inline-block;
        margin: 15px;
    }

    & img {
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
}

h2, h3 {
    text-align: center;
}

.entete, .article_large {
    display: flex;

    & img {
        border-radius: 50% 50% 0 0;
    }
    & .image {
        padding: 0 50px;
    }
}

.cartes > p {
    text-align: center;
}

.carte {
    background-color: #f8f4f1;
    width: 30%;
    border-radius: 10px;

    & p {
        padding: 5px;
    }
}

.hor_flex {
    display: flex;
    justify-content: space-evenly;
}