
body
{
    font-family: Arial, sans-serif;
}

header
{
    background-image: url("images/drapeau1.jpg");
    background-position: 100% 50%;
    background-repeat: no-repeat;
    background-size: 100%;
    position: relative;
    width: 100%;
}

.ombre
{
    position: absolute;
    left: 10px;
    width: 150px;
    height: 205px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.8);
}

.logo-principal
{
    position: relative;
    left: 15px;
    height: 200px;
}

.nom-école
{
    position: absolute;
    left: 126px;
    top: 65px;
    text-align: center;
    font-size: 3rem;
    line-height: 0.9;
    color: rgb(100, 0, 0);
    font-family: "Galada";
    text-shadow: 3px 3px 10px white, -3px 3px 10px white, 3px -3px 10px white, -3px -3px 10px white, 2px 2px 2px rgb(225, 225, 225);
}

nav ul
{
    list-style-type: none;
    padding: 0px;
    margin: 1px;
    display: flex;
    flex-direction: row;
    background-color: rgb(225, 225, 225);
}

nav ul li
{
    flex: 1;
}

nav ul li a
{
    display: block;
    color: rgb(100, 0, 0);
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

nav ul li a:hover
{
    background-color: rgb(100, 0, 0);
    color: rgb(225, 225, 225);
}

.menu-icon
{
    display: none;
    background-color: rgb(225, 225, 225);
    color: rgb(100, 0, 0);
    font-size: 24px;
    padding: 14px 16px;
    cursor: pointer;
}

#menu-toggle
{
    display: none;
}

@media screen and (max-width: 600px)
{
    nav ul
    {
        flex-direction: column;
        display: none;
    }

    nav ul li
    {
        text-align: left;
    }

    #menu-toggle:checked + .menu-icon + nav ul
    {
        display: flex;
    }

    .menu-icon
    {
        display: block;
    }

    footer
    {
        flex-direction: column;
    }
}

main
{
    width: 100%;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    justify-items: stretch;
}

main img
{
    width: 100%;
}

section
{
    position: relative;
}

.légende
{
    position: absolute;
    bottom: 0px;
    width: 100%;
    background-color: rgba(180, 180, 50, 0.6);
    padding-top: 0.3rem;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
    word-spacing: 0.5rem;
    font-family: 'Special Elite', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

footer
{
    margin-top: 12px;
    display: flex;
    justify-content: space-around;
}

footer > section:first-child
{
    flex: 0.8 0.2 100px;
}

footer > section
{
    flex: 1 0 100px;
}

.sociaux > img
{
    height: 50px;
}
