body {
  background-color: #ddd;
}
h1 {
  color: black;
  text-align: center;
  font-size: 38px;
  font-family: "Helvetica", sans-serif; /* Setze die Schriftart auf Helvetica */
  text-decoration: underline; /* Titel wird unterstrichen */
  background-color: grey; /* Hintergrund wird grau */
  padding: 20px 30px; /* Setze den Abstand zwischen dem Text und dem Hintergrund auf 10 Pixel oben und unten, 20 Pixel links und rechts */
  border-radius: 20px; /* Runde die Ecken des Hintergrunds ab */
  width:60%;
  margin: 1% auto;
}
p {
  color: #333;
  font-size: 18px; /* Setze die Textgröße auf 20 Pixel */
  font-family: georgian;
}
div {
  text-align: center;
}
.services {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.service {
  flex: 1;
  text-align: center;
  margin: 0 20px;
  border: 2px solid #ccc;
  border-radius: 5px;
  margin-bottom: 50px;
}
.service img {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  margin: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}
.service h2 {
  margin: 10px;
  font-size: 20px;
  text-align: center;
}

.banner {
  max-width: auto; /* Setze die Breite des Banners auf die volle Breite der Webseite */
  height: auto; /* Setze die Höhe des Banners auf 300 Pixel */
  padding: 0 2%;
}
.banner img {
  max-width: 100%;
  height: auto;
}

.contact-info {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 5px;
  font-size: 10px; /* macht die Schrift größer */
  margin: 20px; /* fügt einen Abstand um das Element herum hinzu */
}

.contact-info h2 {
  margin: 0;
  font-size: 22px;
  color: #333;
}

.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info li {
  margin: 10px 0;
  font-size: 17px;
  color: #666;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 20px;
  }
  p {
    font-size: 16px;
  }
  .services {
    flex-direction: column;
	
.text-container {
  width: 100%;
  padding: 0 2%;
}


	  
