nav
{
    background:url(Fond/Bande_nav_2.png)  top;
    background-size: contain;
}    

nav ul
{
    list-style-type: none; /*enlève les puce*/
    display: flex; /*met liste en ligne*/
    justify-content: space-around;
    flex-direction: row;
    padding-top: 1.2%;
    padding-bottom: 1%;
    text-align: center;
    align-items: center;
    margin-left: -35px;
}

nav a
{
    font-size: 1.4em;
    color: black;
    text-decoration: none;
    font-family:'llalarm';
    font-weight: normal;
    text-transform: uppercase;
}

nav a:hover
{
    color: white;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
}

@media all and (max-width: 1000px)
{
    nav ul
    {
        font-size: 0.7em;
    }

    nav a
    {
        text-shadow: 1px 1px 0px white;
    }
}

@media all and (max-width: 800px)
{
    nav ul
    {
        font-size: 0.6em;
    }
}

@media all and (max-width: 600px)
{
    nav ul
    {
        font-size: 0.4em;
    }
}

@media all and (max-width: 500px)
{
    nav ul
    {
        font-size: 0.3em;
    }
}

@media all and (max-width: 250px)
{
    nav ul
    {
        font-size: 0.2em;
    }
}