
body {
  margin: 0;
  font-family: sans-serif;
  background-color: black;
  color: white;
  height: 100vh;
  overflow: hidden;
}

.section {
  display: none;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
  text-align: center;
}

.section.active {
  display: flex;
}

.menu-toggle {
  font-size: 96px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1001;
}

.overlay-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.overlay-menu.show {
  display: flex;
}

.menu-content {
  text-align: center;
}

.menu-content a {
  display: block;
  margin: 1rem 0;
  font-size: 2rem;
  color: black;
  text-decoration: none;
}

.home-button {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  background: white;
  color: black;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}


.title-text {
  color: white;
  font-size: 2rem;
  text-align: center;
  margin-top: 2rem;      /* Abstand nach oben hinzugefügt */
  margin-bottom: 1rem;
}

}
