#header {
  display: flex;
  align-items: center;  /* Centre verticalement */
  justify-content: center; /* Centre horizontalement */
  padding: 10px 20px;
  height: 80px;  /* Hauteur augmentée pour inclure la description */
}

#logo-container {
  width: 50px;
  height: 50px;
  overflow: hidden; /* Tronque l'image */
  border-radius: 50%; /* Cercle parfait */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

#logo {
  width: 100%; /* Remplit le conteneur */
  height: auto; /* Garde les proportions */
}

#header-title {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: bold;
  color: #323C51;
  text-align: center; /* Assure que le titre est centré */
}

#description {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  color: #323C51;
  text-align: center; /* Centre la description */
  max-width: 800px;  /* Limite la largeur de la description */
  margin: 20px auto 0; /* Centrer et espacer du titre */
  line-height: 1.5;
  margin-bottom: 40px;
}


/*#header {

  align-items: center;
  justify-content: center;
  padding: 0px;
  padding-top: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 28px;
  font-weight: bold;
  color: var(--couleur-general);
 
}*/
#title{
  margin-top: 10px;
}
#title:hover{
  margin-top: 10px;
  color: #4e54ae;
}

#btPB{
  color: var(--couleur-general);
  text-decoration: none;
}

#btn {
  background-color: var(--couleur-general);
  color: #fff;
  padding: 10px 8px;
  border: none;
  border-radius: 7px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 0px;
  text-decoration: none;

  border: 2px solid var(--couleur-general);
  box-sizing: border-box;
}
#btn:hover {
  background-color: #fff;
  color: var(--couleur-general);
  border: 2px solid var(--couleur-general);
}
#btnC {
  background-color: #4e54ae;;
  color: #fff;
  padding: 10px 8px;
  border: none;
  border-radius: 7px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  margin-right: 0px;
  text-decoration: none;

  border: 2px solid #4e54ae;
  box-sizing: border-box;
}
#btnC:hover {
  background-color: #fff;
  color: #4e54ae;;
  border: 2px solid #4e54ae;
}




