/* LE HEADER */
.site-header {
  display: flex; /* Utilisez flexbox pour aligner les éléments horizontalement */
  align-items: center; /* Centre les éléments verticalement */
  justify-content: space-between; /* Espacement entre le titre et le menu hamburger */
}


 /* LES TITRES */
.title-container h1 {
  margin: 0; /* Ajustez la marge selon vos besoins */
}

.title2 {
  color: #3366ff;
}
.title3 {
  color: #3366ff;
  font-weight: bold;
}
.title {
  font-size: x-large;
  font-weight: bold;
}
.center-title {
  font-size: x-large;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
.titlelight {
  font-size: large;
  font-weight: normal;
}

 /* TEXTE NORMAL */

.textenormal {
  font-size: large;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  color: black;
  background-color: transparent;
}

.center-textenormal {
  font-size: large;
  font-weight: normal;
  font-style: normal;
  text-transform: none;
  color: black;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* TEXTE PETIT */

.textemoyen {
  font-size: small;
  font-weight: normal;
  font-style: normal;
  line-height: 0.5;
  text-transform: none;
  color: black;
  background-color: transparent;
}
 /* POUR LES LIENS HTML */
a {
  color: #371b8a;
}

.center-content {
  display: flex;
  justify-content: center;
  align-items: center;
 /* height: 100vh; /* La hauteur de la fenêtre d'affichage pour centrer verticalement */
}

/*POUR UNE TABLE CENTREE SUR L'ECRAN */
.table-center {
  margin-left: auto;
  margin-right: auto;
}

/*HAMBURGER */
.hamburger-menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
}

.hamburger-menu:focus {
  outline: none;
}

.hamburger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 10px;
  transition: all 0.3s linear;
}

.menu-toggle:checked + .hamburger-menu span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle:checked + .hamburger-menu span:nth-child(2) {
  opacity: 0;
}

.menu-toggle:checked + .hamburger-menu span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.menu-options {
  display: none; /* Masqué par défaut */
  position: absolute; /* ou 'fixed' selon votre besoin */
  top: 75px; /* Valeur selon la hauteur de votre en-tête */
  left: 0;
  width: 100%;
  background-color: #f3f3f3; /* La couleur de fond comme nécessaire */
}

/* Les options du menu lorsque le menu hamburger est activé */
.menu-toggle:checked ~ .menu-options {
  display: block;
}

