/* 
	Author :	Boris Geiger
*/

* {
	font-family: ‚Arial, Helvetica, sans-serif‚;
}

body {
	margin: 0px;
}

a {
	color: green;
	text-decoration: none;
}

a:hover {
	color: blue;
}

video {
	width: 100%;
	height: auto;
	object-fit: fill;
}

#header {
	padding-left: 10px;
	background: #0693e3;
	min-height: 10vh;
	max-height: 10vh;
	display: flex;
}

.oben {
	margin: 0px;
	display: flex;
	min-height: 40vh;
	max-height: 40vh;
}

.menudiv {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.leiste {
	display: none;
	align-items: center;
	min-height: 3vh;
	background: #0693e3;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 10px;
}

.leiste a {
	color: yellow;
	text-decoration: none;
}

.leiste a:hover {
	color: red;
}

.mitte {
	min-height: 45vh;
	display: flex;
}

#content {
	padding: 10px;
	width: 100vw;
}

.seiten {
	text-align: center;
	min-width: 75vw;
	max-width: 75vw;
}

.startseite {
	/* padding: 10px; */
	width: 100%;
	display: flex;
	flex-direction: row;
}

.beitraege {
	display: flex;
	justify-content: center;
	gap: 1em 2em;
	flex-wrap: wrap;
	flex-direction: row;
	min-width: 75vw;
	max-width: 75vw;
}

.beitragsspalte {
	width: 400px;
	box-shadow: 10px 20px 15px silver;
	border-radius: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 10px;
	background: silver;
	border: 2px solid black;
}

.seitenleiste {
	min-width: 20vw;
	max-width: 20vw;
}

.galliste {
	display: flex;
	justify-content: center;
	gap: 1em 2em;
	flex-wrap: wrap;
	flex-direction: row;
	min-width: 90vw;
	max-width: 90vw;
}

.galitem {
	width: 400px;
	box-shadow: 10px 20px 15px silver;
	border-radius: 20px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
	background: silver;
	border: 2px solid black;
	margin-bottom: 10px;
}

.objliste {
	display: flex;
	justify-content: center;
	gap: 1em 2em;
	flex-wrap: wrap;
	flex-direction: row;
	min-width: 100vw;
	max-width: 100vw;
}

.objitem {
	display: flex;
	justify-content: center;
	width: 100vw;
	box-shadow: 10px 20px 15px silver;
	border-radius: 20px;
	padding-left: 10px;
	padding-right: 10px;
	background: silver;
	border: 2px solid black;
}

@media screen and (max-width: 900px) {
	.seitenleiste {
		display: none;
	}
	
	.beitraege {
		min-width: 90vw;
		max-width: 90vw;
	}
	
	.leiste {
		display: flex;
	}
	
	.mitte {
		min-height: 41vh;
	}
}

#footer {
	background: #0693e3;
	min-height: 5vh;
	display: flex;
	align-items: center;
	justify-content: center;
}