.utilisateur_gauche {
  width: 200px;
  height: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: -200px;
  background-color: #ccff99;
  padding-top: 60px;
  padding-left: 20px;
  transition: left 0.5s ease;
  overflow-x: hidden;
  visibility: hidden;
}

.utilisateur_gauche a {
  display: block;
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  transition: 0.3s;
}

.utilisateur_gauche a:hover,
.utilisateur_gauche a:focus {
  color: #000;
}

.utilisateur_gauche ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.utilisateur_gauche.active {
  left: 0;
  visibility: visible;
}

.utilisateur_gauche .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 36px;
  background: none;
  border: none;
  cursor: pointer;
  color: #818181;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0px;
  border: 1px solid #ccc;
  background-color: #ccff99;
  cursor: pointer;
  flex: 0 0 44px;
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 1001;
}

.burger span {
  display: block;
  height: 3px;
  width: 22px;
  background: black;
  border-radius: 2px;
}

h1 {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

/* Code pour Tablettes : largeur entre 762 et 1023 pixels*/
@media screen and (min-width: 762px) and (max-width: 1023px) {
}
/* Code pour Ordinateur : largeur supérieure à 1023 pixels (à partir de 1024 pixels */
@media screen and (min-width: 1024px) {
}
