body {
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f4f4f4;
	color: #333;
}

header {
	text-align: center;
	background-color: #b22222;
	color: white;
	padding: 20px;
}

header h1 {
	font-size: 3rem;
}

header p {
	font-size: 1.2rem;
}

/* Wanted-Bereich */
.wanted-section {
	max-width: 800px;
	margin: 20px auto;
	padding: 20px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.images {
	display: flex;
	justify-content: space-around;
	margin-bottom: 20px;
}

.images img {
	width: 30%;
	border-radius: 8px;
}

.description h2 {
	font-size: 2rem;
}

.description p {
	font-size: 1rem;
}

/* Kontakt-Bereich */
.contact-section {
	max-width: 800px;
	margin: 20px auto;
	padding: 20px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
	font-size: 2rem;
}

.contact-section ul {
	list-style-type: none;
	padding: 0;
}

.contact-section li {
	margin-bottom: 10px;
}

/* Footer */
footer {
	text-align: center;
	padding: 10px;
	background-color: #333;
	color: white;
}