:root {
	--red: #781616;
	--cerulean: #0075A2;
	--melon: #FFA69E;
	--celeste: #ADF5FF;
	--aquamarine: #00FFC5;
	--celeste-light: #f5feff;
	--white: #fefefe;
	--grey: #336666;
	--black: #00171f;
	--yellow: #c6ca53;
	--silver:#bfc1c2;
	--anti-flash-white: #f2f3f4;
}

@font-face {
	font-family:"century-gothic";
	font-style:"normal";
	font-weight:"400";
	src:url("../fonts/century-gothic/centurygothic.ttf");
}

html {
	height:2000px;
	min-width:fit-content;}

body {
	display:flex;
	flex-direction:column;
	align-content:space-between;
	padding:0px;
	margin:0px;
	height:100%;
	background-color:var(--anti-flash-white);
	overflow:auto;
}

.topmenu {
	display:flex;
	flex-direction: row;
	justify-content: left;
	align-items: center;
	gap:20px;
	width:100%;
	height:60px;
	background-color:var(--red);
	font-family:"century-gothic", sans-serif;
	font-size: 20px;
	box-shadow: 0.00px 1.00px 28px 0px rgba(0,0,0,0.6);
	
}

.menulink, .mainlink {
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	text-decoration: none;
	font-family:"century-gothic", sans-serif;
	padding: 0px 10px 0px 10px;
}

.menulink  {
	height:100%;
}

.menulink:hover {
	background: linear-gradient(0deg, white 0%, var(--red) 20%);
}

.mainlink {
	height:70%;
	gap: 5px;
}

.logo {
	height: 100%;
	border-radius: 21px;
}

.footermenu {
	display:flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width:100%;
	height:30px;
	background-color:var(--red);
	font-family:"century-gothic", sans-serif;
}

.footerlink {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px;
	color: white;
	text-decoration: none;
	font-family:"century-gothic", sans-serif;
}

.contentfenster  {
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
}

.content {

	font-family:"century-gothic", sans-serif;
	padding:20px;
	margin:20px;
	border-radius:20px;
	background-color: white;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

@media screen and ( min-width: 1000px) {
	.content {
		width: 900px;
	}		
}

@media screen and (min-width: 550px) and (max-width: 1000px) {
	.content {
		width: 500px;
	}	
}

@media screen and (max-width: 550px) {
	.content {
		width: -moz-available;
		padding: 0px;
		margin: 0px;
	}
}

.textbox {
	padding: 20px;
	overflow: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: justify;
}

.textbox h1 {
	text-align: center;
}

.datumsangabe {
	color: grey;
}

@media screen and (max-width: 700px) {
	.content {
		width: 90%;
	}
} 