@font-face { 
	font-family: "Noto Sans"; 
	src: url("../fonts/NotoSans-Regular.ttf"); 
}
body {
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100vh;
	font-family: 'Noto Sans', Arial, sans-serif;
}
.balken_oben {
	background-color: #2F4356;
	color: white;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: right;
	font-size: 16px;
}
.balken_unten {
	background-color: #2F4356;
	color: white;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: left;
	font-size: 14px;
}
.inhalt {
	flex-grow: 1;
	display: flex;
	align-items: top;
	justify-content: top;
}