body {
    font-family: "news-gothic-std", sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
}

footer {
    background-color: #7e8182;
    color: white;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

h1 {
  font-family: "Arial";
  text-align: center;
}

h2 {
  font-family: "Arial";
  text-align: center;
}

h3 {
  font-family: "Arial";
  text-align: center;
}

h4 {
  font-family: "Arial";
  text-align: center;
}

p {
  font-family: "Arial";
  text-align: center;
}

img {
           border-radius: 5px; /* Ecken werden mit einem Radius von 20px gerundet */
       }


@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }

  div.gallery {
    width: 100%; /* Für kleine Bildschirme die volle Breite nutzen */
    margin: 10px 0; /* Etwas Abstand oben und unten hinzufügen */

  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix-group::after {
      content: "";
      display: table;
      clear: both;
    }

.parent-container {
  display: flex; /* oder display: grid; */
  flex-wrap: wrap; /* nur für Flexbox */
}

.clearfix-group {
  display: grid;
  justify-content: center; /* Horizontale Zentrierung */
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  grid-gap: 10px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.datenschutz {
    width: 80%; /* Passe die Breite nach Bedarf an */
    margin: 0 auto; /* Zentriert den Container horizontal */
    padding: 20px; /* Fügt etwas Innenabstand hinzu */
    border: 1px solid #ccc; /* Fügt einen Rand hinzu */
    background-color: #f9f9f9; /* Hintergrundfarbe für den Datenschutztext */
    text-align: justify; /* Richtet den Text im Container aus */
}

.datenschutz a {
    display: inline-block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
}


.image-container {
           display: flex;
           justify-content: center; /* Zentriert die Bilder im Container */
           max-width: 100%;
           margin: auto;
           flex-wrap: wrap; /* Ermöglicht das Umbruch auf kleine Bildschirme */
       }

       /* Stil für jedes Bild */
       .side-by-side-img {
           box-sizing: border-box;
           max-width: 48%; /* Breite der Bilder (beispielsweise 48% für Platz zwischen den Bildern) */
           height: auto;
           margin: 10px; /* Abstand zwischen den Bildern */
       }

       /* Media Query für kleinere Bildschirme */
       @media (max-width: 768px) {
           .side-by-side-img {
               max-width: 100%; /* Volle Breite auf kleineren Bildschirmen */
           }
       }

       nav {
                  background-color: #7e8182;
                  overflow: hidden;
                  display: flex;
                  justify-content: center;
              }

              nav a {
                  display: block;
                  color: white;
                  text-align: center;
                  padding: 14px 16px;
                  text-decoration: none;
              }

              nav a:hover {
                  background-color: #ddd;
                  color: black;
              }

              /* Stil für die Navigationsleiste auf kleinen Bildschirmen */
              @media screen and (max-width: 600px) {
                  nav {
                      flex-direction: column;
                      align-items: center;
                  }

                  nav a {
                      width: 100%;
                  }
              }


.box {
           max-width: 600px;
           margin: 0 auto;
           padding: 20px;
           background-color: #f0f0f0;
           border-radius: 10px;
           box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
           text-align: center; /* Zentriert den Text und die Buttons */
       }

       .box p {
           font-size: 12px;
           display: flex;
           line-height: 1.6;
           margin-bottom: 15px;
       }

       .box button {
           display: flex;
           margin: 0 auto 10px auto; /* Zentriert die Buttons und fügt unten einen Abstand hinzu */
       }
