body{
    font-family: Helvetica, sans-serif;
    margin: 0px;
    padding: 0px;
    background-color: #8e8e8e;
    font-size: larger;
}

header{
    padding: 0px;
    margin: 0px;
    padding-bottom: 1px;
    background-color: #5b5b5b;
}

#logo {
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 15%;
    height: auto;
}

#logo img {
    width: 100%;
    height: auto;
    margin-top: 5px;
}

#title {
    justify-content: center;
    flex-direction: row;
    display: flex;
    margin-bottom: 0px;
}

#title img {
    width: 40%;
    height: auto;
    margin-bottom: 0px;
}


#burger-menu {
    display: none;
}

#link-list, .list{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    list-style-type: none;
}

.lien {
    padding-bottom: 0px;
    padding-top: 0px;
}

.a{
    padding-top: 9px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 1.1vw;
    padding-left: 0.8vw;
    padding-right: 0.8vw;
    border-style: solid;
    border-radius: 20px;
    border-color: #c4c4c4;
    background-color: #c4c4c4;
    margin-right: 10px;
}

.current-page{
    cursor: default;
    border-color: #808080;
    background-color: #808080;
}

.a img{
    height: 30px;
    width: auto;
}

/*-----------------------------------FOOTER-----------------------------------*/

footer {
    height : 15vh;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    margin-top: 10px;
    padding-top: 10px;
    width: auto;
    background-color: #8e8e8e;
    border-color: black;
    border-width: 2px;
    border-top-style: solid;
}

#copyright {font-size: small;}















/* @media screen and (max-width : 900px) { */

/* @media screen and (min-width : 431px) and (max-width : 900px) { 
*/
@media screen and (max-width : 580px) {
    body{
        font-family: Helvetica, sans-serif;
        margin: 0px;
        padding: 0px;
        background-color: #8e8e8e;
        font-size: larger;
    }

    header{
        padding: 0px;
        margin: 0px;
        padding-bottom: 1px;
        background-color: #5b5b5b;
    }

    #logo {
        margin-left: 10px;
        margin-right: 30px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 35%;
        height: auto;
    }

    #logo img {
        width: 100%;
        height: auto;
        margin-top: 5px;
    }

    #title {
        margin-top: 12px;
        justify-content: center;
        flex-direction: row;
        display: flex;
        margin-bottom: 0px;
    }

    #title img {
        width: 80%;
        height: auto;
        margin-bottom: 0px;
    }


    #burger-menu {
        display: block;
        width: 100%;
        text-align: right;
        padding: 8px 24px;
        font-size: 24px;
        background-color: #c4c4c4;
        border: none;
        border-radius: 0;
    }

    #burger-menu img {
        height: 20px;
        width: auto;
    }

    #link-list, .list{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        list-style-type: none;
    }

    #link-list {
        margin-top: 0px;
        display: none;
    }

    .lien {
        padding-bottom: 0.2vh;
        padding-top: 0.5vh;
        text-align: center;
        width: 100vw;
        justify-self: right;
        margin-left: 0px;
    }

    .a{
        margin-right: 0px;
        padding-top: 9px;
        padding-left: 10px;
        padding-right: 10px;
        border-style: solid;
        border-radius: 20px;
        border-color: #c4c4c4;
        background-color: #c4c4c4;
        width: 145px;
        height: /*27px*/3vh;
    }

    .current-page{
        border-color: #808080;
        background-color: #808080;
    }

    .a img{
        height: /*25px*/2.7vh;
        width: auto;
    }

    /*-----------------------------------FOOTER-----------------------------------*/

    footer {
        height : 15vh;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        margin-top: 10px;
        width: auto;
        background-color: #8e8e8e;
        border-color: black;
        border-width: 2px;
        border-top-style: solid;
    }

    #copyright {font-size: small;}
}