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: 80px;
    height: 80px;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
  }
  
  .links {
    width: 100%;
  }
  .slideshow-container {
    width: 50%;
    margin: auto;
    padding: 30px 0px 0px 0px;
  }
  
  h2 {
    text-align: center;
    color: #4f1313;
    font-size: 3em;
  }
  h3 {
    text-align: center;
    color: #4f1313;
    font-size: 2em;
    margin: 30px 0px 30px 0px;
  }
  
  h4 {
    text-align: center;
    color: #4f1313;
    font-size: 2em;
  }
  h5 {
    text-align: center;
    color: #4f1313;
    font-size: 1em;
    margin: 30px 30px 30px 30px;
  }
  
  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;
  }
  
  label[for="toggle_button"] {
    display: none;
  }
  
  label[for="toggle_button"] span {
    font-size: 40px;
  }
  
  .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: 10vw;
      text-align: center;
    }
  
    h3 {
      font-size: 8vw;
      text-align: center;
    }
  
    .slideshow-container {
      width: 80%;
      margin: auto;
    }
  
    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;
    }
  }
  