
nav{
  position: sticky;
  top: 5px;
  z-index: 9;
  width: 99%;
  background-color: var(--menu-bg-color);
  padding: 10px 0px;
  font-family: "eurofurence", "Helvetica", sans-serif;
  font-weight: normal;
}

nav .menu{
  position: relative;
  max-width: 95%;

  /* height: 50px; */
  /* line-height: 50px; */
  margin: auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.menu .language{
  color: green;
  display: inline;
  font-weight: bold;
  align-items: left;
  text-decoration: none;
}

.language form {
  width: 192px;
  margin-top: 3px;
  color: var(--menu-color);
}

.menu .nav-links{
  display: inline-flex;
}

.buttons input{
  display: none;
}

/* Zeichen für Menü öffnen "☰" */
.menu-char::before {
  content: "\2630";
}

/* Zeichen für Menü schließen "❌" (U+274C) oder "✖" (U+2716)*/
.close-char::before {
  content: "\274C";
}
