@font-face {
	
}
/* layout */
body {
	/*border: solid 1px red;*/
	font-family: Arial;
}

html, body {
	height: 99.9%;
	width: 100%;
	margin: 0;
	padding: 0;
}

#boddy-wrapper {
	display: flex;
	flex-direction: column;
	height: 100%;
	min-height: 100%;
}
/* header layout*/
header {
	display: flex;
	flex-direction: row;
}

#header-wrapper {
	display: flex;
	flex-direction: row;
	width: 100%;
	min-width: 100%;
	position: relative;
}

#header-box {
	/*border: solid 1px black;*/
	background-color: black;
	flex: 1;
}

#logo-banner {
	display: flex;
	flex-direction: row;
	width: 100%;
	position: relative;
	top: 0px
}

img.header-logo {
	width: 150px;
	object-fit: contain;
	overflow: hidden;
}

div.site-headline {
	padding: 10px;
	flex: 1;
	color: #ee7e03;
	font-size: xxx-large;
}

#site-headline {
	
}

div.navigation-bar {
	background-color: black;
	display: flex;
	justify-content: flex-end;
}

/* main layout*/
main {
	flex: 1; /* Vertikal  ausfüllen*/
}

#content-wrapper {
	/*border: solid 1px red;*/
	display: flex;
	flex-direction: row;
	width: 100%;
	min-width: 100%;
	height: 100%;
}

div.edging {
	width: 5%;
	background-color: black;
}

div.entry-content {
	/*border: solid 1px #ee7e03;*/
	background-color: #f7a941;
	flex: 1;
	padding: 5px;
}
/*footer layout*/
footer {
	border: solid 1px black;
}
/*Button*/
div.button {
	padding: 2px;
	margin: 1px;
	border: solid 2px #ee7e03;
	border-radius: 4px;
	/*background-color:#f7a941;*/
	background-color: white;
	color: #ee7e03;
	border: solid 2px #ee7e03;
}