h1{
    margin-bottom: 0.3em;
}

.hero-section{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    .informations{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
        gap: 10px;
        p, ul, li, a{
            margin: 0;
            padding: 0;
        }
        ul{
            padding: 0;
            list-style: none;
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            gap: 30px;
            flex-wrap: nowrap;
        }
    }
    .miniature{
        max-width: 400px;
        height: 100%;
        img{
            max-width: 100%;
            height: 100%;
            border-radius: 3px;
        }
    }
}

.contenu{
    margin: 0 10%;
	min-height: 200px;
}

.projet-3images{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5%;
    *{
        width: 100%;
    }
}

figure{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 60%;
    min-width: 300px;
    margin: auto;
    iframe{
        width: 100%;
        min-width: 300px;
        aspect-ratio: 16/9;
    }
    figcaption{
        font-weight: 200;
        font-style: italic;
    }
}

.pagination{
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-areas: 
        "prev next"
    ;
    gap: 80px;
    li{
        padding: 0;
    }
    .prev{
        grid-area: "prev";
        text-align: left;
    }
    .next{
        grid-area: "next";
        text-align: right;
    }
}