html {
  font-family: 'Rajdhani';
  color: white;
  font-size: 24px;
  scroll-behavior: smooth;
}
@media (min-width: 1024px) {
  html {
    font-family: 'Rajdhani';
    color: white;
    font-size: 20px;
  }
}
.logo-picture {
	height: 80px;
}
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 82px;
  background-color: white;
  z-index: 1000;
}
.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo à gauche, menu à droite */
  height: 100%;
  padding: 0 30px;
}
.menu a {
  color: black;
  text-decoration: none;
  font-size: 1.1rem; /* 18px */
  border-right: 0px;
  padding: 30px 30px 0px 30px;
  font-weight: bold;
}
.menu a:hover {
  color: #0404ff;
}
.menu-selection {
  justify-content: flex-end;
}
.current {
  border-bottom: 3px solid #0404ff;
  border-bottom-width
}
