body {
	font-family: Arial, sans-serif;
	text-align: center;
	margin: 0;
	padding: 40px;
	background-color: #1a1a1a; /* dunkler Hintergrund */
	color: #f0f0f0;
}
h1 {
	margin-bottom: 40px;
	color: #66ccff; /* Akzentfarbe */
}
/* Galerie Layout */
.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	justify-items: center;
}
/* Karten für jedes Bild */
.gallery-item {
	background-color: #222; /* dunkle Karte */
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
	transition: transform 0.3s, box-shadow 0.3s;
	width: 100%;
	max-width: 260px;
}
/* Hover Effekt auf die gesamte Karte */
.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}
/* Bilder innerhalb der Karten */
.gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	border-bottom: 1px solid #444;
	border-radius: 10px 10px 0 0;
}
/* Caption unter dem Bild */
.gallery-item .caption {
	padding: 10px;
	font-size: 0.9rem;
	color: #ccc;
	text-align: center;
}