/* Grundlegendes Styling */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to top, darkgreen, palegreen, lightyellow);
  color: #333;
}

header {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
}

header img {
  width: 150px;
}

header h1 {
	font-size: 3cm;
	color: darkgreen;
	font-weight: normal;
	font-style: normal;
	font-family: "Arial Black";
}

header p {
  margin: 5px 0;
}

.banner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}

.banner img {
  width: 150px;
  margin: 10px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.contact {
  text-align: center;
  margin: 20px 0;
}

.contact a {
  display: inline-block;
  margin: 10px;
  text-decoration: none;
  color: darkgreen;
  font-size: 18px;
}

.contact a img {
  width: 30px;
  margin-right: 5px;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

nav a {
  display: inline-block;
  padding: 10px 20px;
  background: darkgreen;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

nav a:hover {
  background: lightgreen;
  color: #333;
}
