html {
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
}

body {
  min-height: 100vh;

  background-color: rgba(239, 235, 229, 1);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 30px;
}

.leisteoben {
  font-size: 25px;

  line-height: 180%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logoimg {
  margin-left: 32px;
}

.kontaktleiste {
  margin-right: 32px;
  color: #4f1313;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.ecke {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
}
.links {
  width: 100%;
}

h1 {
  font-size: 150px;
  line-height: 115%;
}

h2 {
  text-align: center;
  color: #4f1313;
  font-size: 2em;
  margin: 30px 0px 30px 0px;
}
h3 {
  text-align: center;
  color: #4f1313;
  font-size: 2em;
  margin: 30px 0px 30px 0px;
}
.beschreibung {
  margin-top: 25px;
  color: black;
}

#manusection {
  padding: 30px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.circle {
  height: 500px;
  width: 500px;
  max-height: 60vw;
  max-width: 60vw;
  overflow: hidden;
  border-radius: 50%;
  border: 20px solid #2e8b57;

  display: flex;
  justify-content: center;
  align-items: center;
}
.circle img {
  width: 100%;
}

nav {
  margin-bottom: 10px;
}

nav ul {
  background-color: black;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

nav a {
  color: white;
  padding: 0px 32px;
}

.menu-link:hover {
  text-decoration: underline;
  background-color: #2e8b57;
}

#toggle_button {
  display: none;
}

.inhalt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  line-height: 100%;
  font-size: 2em;
  margin-bottom: 30px;
}

label[for="toggle_button"] {
  display: none;
}

label[for="toggle_button"] span {
  font-size: 40px;
}

#helmutsection {
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap-reverse;
}
.helmuttext {
  width: 750px;
  max-width: 90%;
}

#helmutsection img {
  width: 400px;
  max-width: calc(90%-30px);
  border: 15px solid #4f1313;
}

.helmuttext h2 {
  font-size: 80px;
}

.helmuttext p {
  text-align: justify;
  line-height: 175%;
}

.impressum {
  width: 100%;
  height: 30px;
  background-color: black;
  font-size: 15px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.impressumtext {
  color: white;
}

@media (max-width: 800px) {
  h2 {
    font-size: 12vw;
    text-align: center;
  }
}
.beschreibung {
  text-align: center;
}
nav {
  position: absolute;
  top: 0;
  left: 0;
  background: #2e8b57;
  padding: 15px;
  border-radius: 0 0 25px 0;
}
nav ul {
  display: none;
  flex-direction: column;
}
#toggle_button:checked ~ ul {
  display: flex;
}

label[for="toggle_button"] {
  display: block;
}

.leisteoben {
  flex-direction: column;
}
.logoimg {
  margin: 0px;
}
.kontaktleiste {
  display: none;
  margin: 0px;
}

#helmutsection {
  padding: 20px 0;
}
#helmutsection h2 {
  text-align: center;
  font-size: 12vw;
}

#helmutsection img {
  max-width: 80vw;
}
