body {
	font-family: Tahoma, Verdana, Helvetica, Arial, sans-serif;
	background-color: #f4f4f4;
	margin: 0;
	padding: 20px;
}

a {
	text-decoration: none;
}

a:link {
	color: #8B4513;
}

a:visited {
	color: #8B4513;
}

a:hover {
	color: #CD853F;
}

a:active {
	color: #5D4037;
}

h2 {
	font-size: 24pt;
	font-weight: bold;
}

.addcontent, .footer, .imprint, .main {
	margin-bottom: 20px;
}

.title {
	display: block;
	margin-top: 20px;
	margin-bottom: 50px;
	margin-left: auto;
	margin-right: auto;
	max-width: 980px;
}

.subtitle {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
	max-width: 980px;
}

.addcontent {

}

.footer {
	text-align: center;
	font-weight: bold;
}

.imprint {
	display: block;
	margin: auto;
	max-width: 800px;
}


.main {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
}

.main_background_overlay {
	position: absolute;
	top: 0;
	left: 0;
	transform: translate(0, -20px);
	width: 100%;
	height: 350%;
	transition: opacity 3s, background-image 1s 1s;
	background-size: contain;
	background-position: top;
	opacity: 0;
	pointer-events: none;
	z-index: -1;
	filter: blur(20px);
}

.main_item {
	position: relative;
	overflow: hidden;
	margin: 16px;
	transition: transform .3s;

}

.main_item img {
	width: 100%;
	height: auto;
	display: block;
}

.main_item:hover {
	transform: scale(1.1);
}

.overlay {
	position: absolute;
	text-align: center;
	bottom: 10%;
	left: 0;
	/* width: 100%;
	height: 60%; */
	block-size: fit-content;
	padding: 20px;
	background: rgba(0, 0, 0, 0.9);
	color: white;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.5s;
}

.main_item:hover .overlay {
	opacity: 1;
}

.audio_preview {
	display: inline-block;
	margin-left: 16px;
	transition: transform .3s;
}

.audio_preview:hover {
	font-weight: bold;
	padding-left: 16px;
	transform: scale(1.2);
}

.svg-link {
	display: inline-block;
}

.svg-icon path {
	fill: currentColor;
}

.svg-icon {
	display: inline-block;
	width: 70px;
	height: auto;
	transition: transform .3s;
}

.svg-icon:hover {
	transform: scale(1.2);
}

@media (max-width: 1300px) { /* Beispiel für eine Mindestbreite */
	.main {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.subtitle {
		max-width: 800px;
	}
}

@media (max-width: 750px) {
	.main {
		grid-template-columns: repeat(1, 1fr);
	}
	
	.overlay {
		font-size: 10pt;
	}
}

@media (max-width: 500px) {
	.overlay {
		font-size: 9pt;
	}
}

