body {
    font-family: futura-pt;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    background-color: #fff;
    color: #777;
    margin : 0;
    padding: 0;
   
}

* { margin:0; padding:0}

#footer {
    width : 50%;
    margin-top : 50px;
    margin-bottom : 20px;
    margin-left: auto;
    margin-right: auto;
}

#footer p {
    text-align: center;
}

/* for desktop */
@media(min-width: 1024px) {
    

    #content {
        width : 65%;
        margin : auto;
    }

    #head {
        margin-top: 60px;
        margin-bottom: 50px;
        display : flex;
        justify-content: space-between;
        align-items: center;
        width : auto;
    }

    #logo {
        width : 200px;
    }


    #menu {
        display: flex;
        justify-content: space-between;
        margin-left : auto;
        font-family: futura-pt;
        font-weight: 400;
        font-style: normal;
        font-size: 12px;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 1px;
        list-style-type: none;
    }
    li {
        margin-right: 20px; /* Espace entre les éléments */
        
    }

    li a{
        text-decoration: none;
        color: grey;
    }

    li a:hover{
        text-decoration: none;
        color: #111;
    }
}



/* For mobile */
@media (max-width: 1023px) {
    #content {
        width : 90%;
        margin : auto;
    }

    
    .burger-icon span {
        display: block;
        width: 35px;
        height: 5px;
        background-color: black;
        margin: 6px 0;
    }

    #head {
        margin-top: 60px;
        margin-bottom: 10px;
        display : flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
    }
    #logo {
        width : 150px;
        margin : auto;
        margin-bottom: 20px;
        margin-top : -50px;
        margin-left : -15px;
    }

    #menu {
        
        display: none;
        font-family: futura-pt;
        font-weight: 400;
        font-style: normal;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 1px;
        list-style-type: none;
        text-align: center;
        margin : auto;
        margin-top: 9%;
    }
    

    li {
        margin-bottom: 9%;
    }

    li a{
        text-decoration: none;
        color: grey;
    }

    li a:hover{
        text-decoration: none;
        color: #111;
    }
}