body {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

header {
    text-align: center;
    height: 750px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: flex-end;
    align-items: center;

    #AccesRapide {
        display: flex;
        flex-direction: row;
        gap: 250px;
    }
}

main {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
    align-content: center;
}

#ListeCours {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    align-content: center;
    justify-content: space-evenly;

    .Cours {
        border: 2px solid black;
        width: 260px;
        height: 318px;
        padding: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;

        p {
            height: 90px;
        }

        img {
            width: 220px;
            height: 100px;
        }
    }
}

#Commentaires {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-evenly;

    .Avis {
        width: 600px;
        height: 140px;
        border: 1px;
        padding: 10px;
    }
}

@media(max-width:375px) {
    body {
        text-align: center;
    }

    header {
        #AccesRapide {
            flex-direction: column;
            gap: 50px;
        }
    }


    footer {
        flex-direction: column;
        font-size: small;
    }
}