@charset "UTF-8";
.burger-logo {
  width: 50px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: fixed;
  top: 10%;
  left: 10%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
.burger-logo article {
  width: 100%;
  height: 3px;
  background-color: var(--blanc-nuance);
  border-radius: 5px;
}

.burger-container {
  position: fixed;
  text-align: center;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  height: 100dvh;
  width: 100dvw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  display: none;
  z-index: 4;
}
.burger-container article {
  background-color: var(--noir-nuance);
  height: 25%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1);
  margin: -1px;
}
.burger-container article h2 {
  font-size: 5rem;
}
.burger-container .un {
  left: -100%;
}
.burger-container .deux {
  left: 100%;
}

/* Pour les écrans de téléphone */
@media (max-width: 767px) {
  .burger-logo {
    top: 5%;
    left: 15%;
  }
  .burger-container article h2 {
    font-size: 2rem;
  }
}/*# sourceMappingURL=burger.css.map */
