/* Grundlegende Stile */
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 200; /* ExtraLight */
  overflow-x: hidden;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  padding-right: 10px;
  z-index: 1000;
}

.navbar a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 200;
}

/* Menü Button */
.menu-button {
  color: black;
  font-family: "Montserrat", sans-serif; /* Schrift explizit setzen */
  font-weight: 200; /* ExtraLight */
  font-size: 18px;
  cursor: pointer;
  border: none;
  background: none;
  white-space: nowrap;
  padding: 10px;
}


/* Menü */
.menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: white;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  z-index: 999;
}

.menu.active {
  height: 100vh;
}

.menu a {
  text-decoration: none;
  color: black;
  font-size: 24px;
  padding: 15px;
  font-weight: 200;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Impressum */
.impressum {
  max-width: 700px;
  margin: 80px auto;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  padding: 0 20px;
}

.impressum h1 {
  font-size: 22px;
  font-weight: 300;
  text-align: left;
  margin-bottom: 20px;
}

.impressum p {
  margin-bottom: 18px;
}

.impressum a {
  color: #000000;
  text-decoration: none;
}

.impressum a:hover {
  text-decoration: underline;
}

