* {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    }
    
    header {
        position: fixed;
        background-color: #262626; /*Couleur du background du header*/
        color: #F20505;  /*Couleur du titre*/
        width: 100vw; /*Largeur*/
        height: 10vh; /*Hauteur*/
        display: flex;
        justify-content: left; /*Mettre le texte a l'endroit voulu*/
        align-items: center;
        font-size: 1.75vh; /* Ajustez la taille du texte du header selon vos préférences */
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 10;
        padding: 10px; /**/
      }

      .logo {
        display: flex;
        align-items: center;

      }
    
      .logo img {
        width: 30px;
        height: 60px;
        margin-right: 10px;
      }

      body {
        background-color: #363636;
      }

      nav {
        position: fixed;
        top: 16vh; 
        width: 100%;
        height: 5.5vh; 
        display: flex; 
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center; 
        z-index: 10;
        border-bottom: solid white 1px;
      }

      /*Boutons qui servent à naviguer entre les différentes pages*/
    .bouton {
      display: block;
      color: white; 
      font-size: 3vh; 
      font-family: 'Times New Roman'; 
    }