body {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.wrapper {
  max-width: 1024px;
  min-height: 100vh;
  width: 100%;
  border-left: 1px solid #d2d2d2;
  border-right: 1px solid #d2d2d2;
  box-shadow: 0px 0px 15px 5px #e3e3e3;
  display: flex;
  flex-direction: column;
}

.menu_wrapper {
  width: 100%;
  height: 100%;
}

.header {
  height: 100px;
  background-color: #d2d2d2;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #444;
}

.content {
  flex: 1;
  padding: 48px;
}

.footer {
  height: 75px;
  background-color: #444;
}

.footer-text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  font-size: 20px;
  color: white;
}

.logo-muster {
  height: 100%;
  padding: 0px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  font-weight: 300;
}

.buttonListe {
  padding: 0 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.menuButtonImage {
  width: 28px;
  height: 28px;
}

.burgerMenuButton {
  background: transparent;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  border: 0;
  transition: background-color 0.1s ease-in-out;
}

.burgerMenuButton:hover {
  background-color: #2997ff;
}

.burgerMenuButton:active {
  background-color: #53535393;
}

.fullscreen-menu {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #ffffff;
  opacity: 0;
  display: none;
  left: 0px;
  right: 0px;
  transition-property: opacity, display;
  transition-duration: 0.25s;
  transition-behavior: allow-discrete;
}

.show {
  display: block;
  opacity: 1;
}

@starting-style {
  /* <-- and this line */
  .show {
    opacity: 0;
  }
}

.menu_header {
  display: flex;
  justify-content: space-between;
  max-width: 1024px;
  width: 100%;
  height: 100px;
}

.center_div {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d2d2d2;
}

.menu_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.menu_list a {
  text-decoration: none;
  color: #444;
  width: 100%;
  height: 100%;
  padding: 15px 0;
}

.menu_list a:hover {
  color: #fff;
  background-color: #444;
}

.navLink {
  text-align: center;
}

.activePage {
  color: rgb(255, 166, 0);
}

h2 {
  text-align: center;
}

@media (max-width: 650px) {
  .logo-muster {
    font-size: 20px;
    padding: 0 12px;
  }

  .buttonListe {
    font-size: 20px;
    padding: 0 12px;
  }

  .menuButtonImage {
    width: 24px;
    height: 24px;
  }

  .footer-text {
    font-size: 14px;
  }
}

.kontaktformular {
  width: 100%;
  display: flex;
  justify-content: center;
}

form {
  width: 75%;
}

.title {
  text-align: center;
  color: #333;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  margin-bottom: 15px;
}

.form-label {
  margin-bottom: 5px;
  font-weight: bold;
  display: block;
}

.form-input,
.form-textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  resize: none;
  padding: 10px;
  box-sizing: border-box;
}

.form-button {
  background-color: #4caf50;
  color: white;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.form-button:hover {
  background-color: #45a049;
}

@media (max-width: 500px) {
  label {
    font-size: 12px;
  }

  .form-input,
  .form-textarea,
  .form-button {
    font-size: 12px;
  }

  form {
    width: 100%;
  }

  .logo-muster {
    font-size: 16px;
    padding: 0 8px;
  }

  .buttonListe {
    font-size: 16px;
    padding: 0 8px;
  }

  .menuButtonImage {
    width: 20px;
    height: 20px;
  }
  .content {
    font-size: 11px;
  }

  h2 {
    font-size: 14px;
  }

  .footer-text {
    font-size: 10px;
  }
}
