: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: 100%;
}

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%;
	
	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);
	position: sticky;
  	top: 0px;
  	z-index: 999;
	
}

.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;
	cursor: pointer;
}

.menulink  {
	height:100%;
}

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

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

.mainlink label {
	cursor: pointer;
}

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

.footermenu {
position: sticky;
bottom: 0px;
	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;
	box-shadow: 0.00px 1.00px 28px 0px rgba(0,0,0,0.6);
}

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

.contentfenster  {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
	margin-bottom: 20px;
	z-index: 0;
}

.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%;
	}
}

.kachelContainer {
	background-color: var(--white);
	display: flex;
	flex-direction: row;
	gap: 10px;
	justify-content: flex-start;
	align-items: flex-start;
	height: 100%;
	max-width: 1157px;
	padding: 10px;
	flex-wrap: wrap;

}

.kachel {
	border: 2px var(--cerulean) solid;
	border-radius: 5px;
	box-shadow:0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 15px;
	width: 345px;
	min-width: 345px;
	max-width: 345px;
	height: 450px;
	min-height: 450px;
	max-height: 450px;
	display: flex;
	flex-direction: column;
	gap: 5px;
	z-index: 2;

	
}

.kachelBild {
	border-radius: 5px;
	max-height: 200px;

}

.kachelTitel {
	font-family:"century-gothic", sans-serif;
	font-weight: bold;
	font-size: 18px;
	padding: 10px 0px 5px 0px;
	
}

.kachelDatum {
	font-style: italic;
	color: var(--cerulean);
	font-family:"century-gothic", sans-serif;
}

.kachelText {
	overflow: auto;
	font-family:"century-gothic", sans-serif;
	margin: 10px 0px 10px 0px;
	padding: 5px;
	border-radius: 5px;
	background-color: var(--anti-flash-white);
}

.kachelLink {
	font-family:"century-gothic", sans-serif;
	background-color: var(--cerulean);
	color: var(--white);
	text-decoration: none;
	border-radius: 5px;
	padding: 10px;
	width: fit-content;
	cursor: pointer;
}