:root {
	--hell: rgb(213, 228, 235);
	--dunkel: rgb(21, 24, 65);
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin: 0;
	background: white;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
		Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	line-height: normal;

}

@font-face {
	font-family: "Whisper";
	src: url("Whisper-Regular.ttf");
}

@font-face {
	font-family: "MonsieurLaDoulaise-Regular";
	src: url("MonsieurLaDoulaise-Regular.ttf");
}

@font-face {
	font-family: "AlumniSansPinstripe-Regular";
	src: url("AlumniSansPinstripe-Regular.ttf");
}

@font-face {
	font-family: "Explora-Regular";
	src: url("Explora-Regular.ttf");
}

header {
	padding-top: 24px;
	padding-bottom: 24px;
}

nav {
	position: sticky;
	top: 0;
	font-weight: 500;

	/* Das ist dafür, dass die Navigation jederzeit anklickbar ist */
	z-index: 99;
}

p {
	font-family: AlumniSansPinstripe-Regular;
	/*	font-family: Whisper;*/
	font-size: 5em;
	font-weight: inherit;
	color: rgb(225, 225, 225);
	text-align: center;
}

p.name,
li {
	font-family: AlumniSansPinstripe-Regular;
	font-size: 5em;
	color: rgb(0, 0, 0);
	text-align: center;
	line-height: 1;
	font-size: xxx-large;
}

p#komplname {
	font-family: Explora-Regular;
	font-size: 5em;
	color: rgb(0, 0, 0);
	text-align: center;
}

h1,
h2,
h3 {
	display: flex;
	justify-content: center;
	color: rgb(0, 0, 0);
}

/*footer,*/
/*nav {*/
/*  backdrop-filter: blur(8px);*/
/*}*/

.teaser {
	width: 100%;
	height: 300px;
}

#mutti {
	width: 600px;
	min-width: 100px;
	margin-bottom: -55px;
}

#mutticontainer {
	width: 100%;
	background-color: aliceblue;
	padding: 25px;
	border-radius: 20px 20px 0px 0px;
	margin-top: -5px;
	background: rgb(163, 163, 163);
	background: linear-gradient(90deg, rgba(163, 163, 163, 1) 0%, rgba(163, 163, 163, 1) 18%, rgba(255, 255, 255, 1) 100%);
	border-bottom: 2px;
	border-color: floralwhite;
	border-style: solid;
	background-image: url("panoramasonnenuntergang_klein.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: repeat-x;
	/* Wiederholung des Bildes nur horizontal */
	animation: scrollBackground 240s linear infinite;
	/* Animation starten */
}

@keyframes scrollBackground {
	0% {
		background-position: -100% 0;

	}

	/* Startposition des Bildes */
	100% {
		background-position: 0 0;
	}

	/* Endposition des Bildes */
}

@media screen and (min-width: 800px) {
	.teaser {
		height: 600px;
	}

	.textblock {
		margin-top: -85px;
	}
}

@media screen and (max-width: 800px) {
	p {
		font-size: xxx-large;
	}

	p.name {
		font-size: x-large;
	}

	.textblock {
		margin-top: -85px;
	}

	#mutti {
		width: 200px;
	}
}

@media screen and (max-width: 500px) {
	.textblock {
		margin-top: -50px;
	}

	p {
		font-size: 40px;
	}

	p.name {
		font-size: x-large;
	}

	p#komplname {
		font-size: xxx-large;
	}

	li {
		font-size: xx-large;
	}

}

.teaser img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: 0px 2px 15px rgb(0, 0, 0);
}

.anzeige {
	max-width: 80%;
	border: 20px;
	border-color: rgb(122, 122, 122);
	border-style: double;
	flex-direction: column;
	padding: 15px;
	margin-top: 20px;
}

footer ul,
nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

footer ul li,
nav ul li {
	padding: 16px;
}

.mitte {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-top: 25px;
}

#topsection {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: column-reverse;
	max-width: 85%;
	margin-left: auto;
	margin-right: auto;
	padding: 25px;
	box-sizing: border-box;
	background: linear-gradient(180deg, rgba(55,55,55,1) 45%, rgba(129,129,129,1) 94%, rgba(87,87,87,1) 100%);
	background-color: rgb(130, 130, 130);
	border-radius: 20px;

	/* Das ist dafür, dass die Überschrift nicht hinter dem verschwomennen Bereich ist */
	padding-top: 0px;
	transform: translateY(15px);
}