#menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: fit-content;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 10px;
}
#menu #menu-top {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}
#menu #menu-top #menu-title {
  font-size: 2.8rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  color: var(--text);
}
#menu #menu-top #menu-subtitle {
  margin-top: -10px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}
#menu #menu-top #menu-subtitle p {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--titre);
  letter-spacing: 2px;
  text-wrap: nowrap;
  margin: 0;
  padding: 0 5px;
}
#menu #menu-top #menu-subtitle .trait {
  height: 2px;
  width: 100%;
  background-color: var(--titre);
}
#menu #menu-bottom {
  width: 100%;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#menu #menu-bottom .menu-item {
  color: var(--titre);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0 15px;
  text-decoration: none;
  color: var(--text);
}
#menu #menu-bottom .menu-item:hover {
  color: var(--titre);
}
#menu #menu-bottom .select {
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
  color: var(--titre);
}
#menu #menu-bottom .menu-separator {
  width: 2px;
  height: 15px;
  background-color: var(--titre);
  margin: 0 10px;
}
#menu #menu-bottom #translation {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 2px;
}
