@charset "utf-8";
/* CSS Document */



html {
	box-sizing: border-box;
	background-color: rgb(226, 217, 204);
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
	
}

*, *::before, *::after {
	box-sizing: inherit;
}

p {
	text-align: justify;
}


navi {
	
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;	
}

.logo {
	display: flex;
	justify-content: center;
	max-width: 100%;
	z-index: 1;
}

.ueber a img:hover {
	transform: skew(10deg, 0deg);
	transition: all 0.5s ease;
}

.content {
	margin-top: 1em;
	width: 100%;
	padding: 1em;
	font-size:1.75em;
	background-color: rgba(255,253,253,0.5);
	border: .1em solid #5A2700;
	border-radius: 1em;
	background-image: url("../navi/img/bretterHG.jpg");
	
}




/*  ------------------- Smartphone ------------------------------*/


.schilder {
		display: none;
	}

.dropdown {		
 	display: flex;
	position: relative;
	top: 1em;
	justify-content: center;
}
	
.dropbutton {	
	width: 13em;
	border: none;
	border-radius: 1em;
	box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.75);
	margin-bottom: 1em;
}

.drop-content {
	display: none;	
	position: absolute;
	top: 4em;
	background-color: #8F521D;
	min-width: 12em;
	font-size: 2em;
	text-align: center;
	border-radius: 1em;
	z-index: 1;
}

.drop-content a {
	display: block;
	position: relative;
	color: ghostwhite;
	padding: 1em 1em;
	margin: 0.5em;
	text-decoration: none;	
}

.drop-content a:hover {
	background-color: #5A2700;
}

.dropdown:hover .drop-content {
	display: block;
	box-shadow: 0.5em 0.5em 0.5em rgba(0, 0, 0, 0.85);
}
	
	/* Inhalt */
	




/*  ------------------- DEsktop ------------------------------*/
@media screen and (min-width: 90em) {
	
	.dropdown {
		display: none;
	}
	
	.schilder {		
		display: block;
		position: relative;
		top: -2em;
		align-self: center;
		max-width: 100%;		
	}
	
	.schild {		
		width: 20em;
		float: left;	
		margin-right: 1em;
	}
	
	.content {
		display: block;
		position: static;
		max-width: 100%;
		font-size: 1.5em;		
	}
	
	
	
}
	





	
	
	
	
	
	
	