/* Typographie */
body {
  font-family: 'Inter', sans-serif;
}
h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
}

/* Burger menu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 24px;
  height: 20px;
}

.hamburger .line {
  height: 2px;
  background: white;
  width: 100%;
  border-radius: 2px;
}

.rotate-180 {
  transform: rotate(180deg);
}
.transition-rotate {
  transition: transform 0.3s ease;
}
