/* Header */
#header {
    display: flex;
    flex-direction: row;
    padding : 3px;
    height: 200px;
    width: 100%;
    background-color: rgb(0, 0, 0);
    border: 5px solid rgb(255, 255, 255) ;
    align-items: center;
}

/* Image */
#head-image {
    justify-content: flex-start;
    align-self: flex-end;
}

/* Titre */
#head-titre {
    font-family: K2D;
    font-size: 8em;
    color: rgb(255, 255, 255);
}
/* Fin Header */

/* Footer */
#footer {
    background-color: rgb(65, 65, 65);
    padding-top : 3px;
    padding-right : 3px;
    padding-bottom : 3px;
    padding-left : 3px;
    height: 8%;
    width: 100%;
    margin-top: 4em;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    align-items: center;
    border: 3px solid black;
}

/* Auteur */
#foot-auteur {
    justify-content: flex-start;
    color: white;
    font-size: 1.2em;
    margin-left: 1em;
}

/* Politique et confidentialité*/
.links
{
    color: white;
    text-decoration: none;
    padding: 0.3em;
    margin-left: 1em;
    margin-right: 1em;
}

/* Réseaux */
#foot-réseaux {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    height: 4.5em;
    width: 20em;
    margin-right: 2em;
}

.foot-réseaux {
    font-size: 1em;
    height: auto;
    width: auto;
    color: white;
}

.foot-items {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
    border-radius: 70px;
    padding: 1em;
    margin: 1em;
    text-decoration: none;
    width: 30px;
    height: 30px;
    color: white;
    background-color: black;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}
.foot-items:hover {
    transform: scale(1.1);
    background-color: white;
    color: black;
}
/* Fin Footer */

/* Barre de navigation */
nav {
    height: 5em;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: white
}

/* Elements barre de navig */
.Nav {
    display: inline;
    text-decoration: none;
    font-family: Kanit;
    font-size: 2em;
    border-radius: 25px 0px 25px 0px;
    border: 3px solid black;
    background-color: rgb(228, 227, 227);
    height: auto;
    width: auto;
    color: rgb(44, 54, 58);
    margin: 1em;
    padding: 0.1em;
    transition: transform 0.3s ease;
}

.Nav:hover {
    transform: scale(1.07);
}

.Nav:active {
    background-color: white;
}
/* Fin barre de navig */

/* Bouton Top */
.bouton-top {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-family: Arial, Helvetica, sans-serif;
}

#bouton-top {
    background-color: white;
    border: 4px solid black;
    padding: 0.6em;
    font-size: 1.1em;
    text-decoration: none;
}
/* Fin bouton Top */