@import url('https://fonts.googleapis.com/css?family=Roboto:200,300,400&display=swap');
p, table, a, #message, span, textarea, label, div, h1{
	font-family: 'Roboto', sans-serif;
	font-size: 12pt;
	font-weight: normal;
	line-height: 20px;
	text-decoration:none;
}
*{
	box-sizing: border-box;
}
body{
	width: 1024px;
	height: 100vh;
	margin: 0 auto 0 auto;
}
html, body, a, nav{
	outline:none;
	padding:0 0 0 0;
	border:none
}
nav{
	margin:0 auto 0 auto;
	display:flex;
	flex-wrap: wrap;
	height:36px;
	background:#F4F4F4;
	border:1px solid #E7E7E7;
	position:relative
}
nav #menu_open{
	display:none;
}
nav a{
	display:inline-block;
	height: 100%;
	transition:all ease 0.2s;
	-webkit-transition:all ease 0.2s;
	-moz-transition:all ease 0.2s;
	-o-transition:all ease 0.2s;
	padding:8px 30px 0 30px;
	color: white;
	text-decoration: none;
	text-align: center;
	font-size: 110%;
}
nav #startseite{
	background-color:#575757;
}
nav #haus{
	background-color:#3294ee;
}

nav #zimmer{
	display: none;
	background-color:#56c100;
}

nav #anfahrt{
	background-color:#cd1010;
}

nav #buchen{
	background-color:#ffda0e;
}

.title{
	font-size:150%;
	margin-top: 50px;
	margin-left: 10px;
	display: block;
}

.nav_show{
	margin-top:0% !important;
	transition: all .2s ease-in;
}
.content{
	width: 100%;
	display: flex;
	border:1px solid #e8e8e8;
	background:#f7f7f7;
	margin-top: 20px;
	padding: 20px 20px 20px 20px;
}
@media only screen and (min-width: 1024px) {
	nav #startseite:hover{height:65px;}
	nav #haus:hover{height:50px;}
	nav #zimmer:hover{height:80px;}
	nav #anfahrt:hover{height:70px;}
	nav #buchen:hover{height:90px;}
}
@media only screen and (max-width: 1024px) {
	body{
		width:100%;
	}
	nav{
		position: fixed;
		width: 100%;
		top:0px;
	}
	nav #menu_open{
		display: block;
		color: grey;
	}
	nav a:not(#menu_open){
		margin-top:-100%;
		width:100%;
		height: inherit;
	}
}