/* Masque la barre de scroll dans tous les navigateurs */
*::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

* {
  -ms-overflow-style: none; /* IE / Edge */
  font-family: "Public Sans", sans-serif;
  scrollbar-width: none; /* Firefox */
}

.menu-open div div:nth-child(1) {
  rotate: 45deg;
  top: 50%;
  transform: translateY(-50%);
}

.menu-open div div:nth-child(2) {
  opacity: 0;
}

.menu-open div div:nth-child(3) {
  rotate: -45deg;
  bottom: 50%;
  transform: translateY(50%);
}

body {
  overflow: hidden;
}
