body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
      Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue",
      sans-serif;
    font-size: 0.875rem;
    color: #1e1e1e;
    
    & > div {
      max-width: 1200px;
      margin: 0 auto;
    }
  }

  nav {
    margin-bottom: 8px;
    ul {
      display: flex;
      flex-direction: row;
      margin: 0;
      align-items: center;
      justify-content: flex-end;
      font-size: 1rem;
      font-weight: 500;

      li {
        list-style-type: none;

        a {
          display: block;
          padding: 16px 8px;
          color: #1e1e1e;
          text-decoration: none;

          &:hover {
            background-color: #f5f5f5;
          }
        }
      }
    }
  }

  #image {
    height: 280px;
    background-image: url("./images/IMG_8568.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  article {
    margin: 48px auto;
    max-width: 800px;
  }

  ul.zeltlager {
    @media only screen and (min-width: 700px) {
      column-count: 2;
      column-gap: 16px;
    }

    @media only screen and (max-width: 700px) {
      padding: 0;
    }

    & > li {
      list-style-type: none;
      font-weight: 700;

      ul {
        break-inside: avoid-column;

        li {
          list-style-type: disclosure-closed;
          font-weight: 500;
        }
      }
    }
  }

  footer {
    background: #e0e0e0;
    color: #212121;
    margin: 0 8px 16px;

    @media only screen and (min-width: 715px) {
      display: flex;
      flex-direction: row;
      justify-content: space-around;
    }

    padding: 16px;
    gap: 16px;

    div {
      flex: 1;
      flex-basis: 307px;
      max-width: 307px;

      h2 {
        font-size: 1rem;
        margin: 0;
      }
    }
  }