
* { box-sizing: border-box;}

body, html { 
	height: 100%; 
	min-width:375px;
	background-color:#339966;
	margin:0;
}
#main_stage {
	max-width: 95%;
	margin-right:auto;
	margin-left:auto;
	padding-top:5px;	
	/* background-color:white; */
}
#mainlayer_bg {
	width:100%;
	background-color:#ffcc33;
	background-image:url(/stuben/images/bg_orange.jpg);
	box-shadow: 8px 7px 20px black;
	border-radius: 10px;

}

#mainlayer_stage {
	width: 100%;
	height: 100%;
	margin-right:auto;
	margin-left:auto;
}

.logo {
	position:absolute;
	left: -20px;
	max-height:168px;
	z-index:200;
}
#headline1, #headline2 {
	text-align: center;	
	z-index:201;
}
#headline2 {display:none;}

.headliner {
	font-family: "Comic Sans MS";
	font-size:2.5em;
	color:#000000;
	font-weight:bold;
	padding-left:10px;
	padding-right:10px;
	text-shadow: 10px 11px 20px black, 2px  2px 2px white;
}


nav, nav > ul { 
    width: 100%; 
    padding: 5px;
	margin: 0;
}

nav > ul > li {
	position: relative;
	display: inline-block; 
    padding: 5px;
	background: rgba(255, 255, 255, 0.2);
	width:auto;
	min-width: 120px;
	border-radius: 0.5em;
	border: 1px solid black;
}
nav > ul > li > ul {
	position: absolute;
	list-style-type: none;
	margin: 0; 
    padding: 2px;
	top: 30px; 
    left: 0;
	width:auto;
	min-width: 120px;
    display: none;
	border-radius: 0.5em;
	border: 1px;
	z-index:201;
}
nav > ul > li > a {
	text-decoration:none;
	color:black;
	font-weight:bold;
}
nav > ul > li > a:hover {
	color:white;
}
 nav > ul > li:hover > ul { 
    display: block;
	overflow:visible;
}
#menu {
	width:100%;
	background: rgba(255, 255, 255, 0.4);
}
#footer {
	width:100%;
	margin-top:30px;
	background: rgba(255, 255, 255, 0.2);
	text-align: center;	
}
#main_content {
	margin-right:30px;
	margin-left:20px;
	background-color:#339966;
	background-image:url(/stuben/images/Bier440.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;	
	text-align: center;
	box-shadow: 8px 7px 20px black;
	border-radius: 10px;
	z-index:100;
}

/* The grid-area property can be used as a shorthand property for the grid-row-start, grid-column-start, grid-row-end and the grid-column-end properties. */
.item1 { grid-area: logo;position:relative; }
.item2 { grid-area: header; }
.item3 { grid-area: nocontent; display:none; }
.item4 { grid-area: content;position:relative;}
.grid-container {
	display:grid;
	grid-template-columns: 88px auto;
	grid-template-rows: 112px 56px auto;
	grid-template-areas:
		'logo header'
		'logo header '
		'content content'
}


.peterundsieglinde_jpg {
	max-width:200px;
	margin:20px 20px 20px 0px;
	box-shadow: 10px 11px 15px black;
	border: 1px solid black;
	border-radius: 10px;
	transform: rotate(-2deg);
}
#peterundsieglinde_jpg2 {display:inline-block;}
#peterundsieglinde_jpg1 {display:none;}
#content {
	padding: 20px;

}
.content_text {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-weight: bold;
    font-size: 16px;
}

@media only screen and (min-width:545px){
	.grid-container {
		grid-template-areas:
		'logo header'
		'logo content'
		'nocontent content'
	}
	.item3 { display:block; }
	.logo {left: 10px;}
	#headline1 {display:none;}
	#headline2 {display:block;}
	#footer {bottom:-75px;}
	#main_stage {max-width: 90%;}
}
@media only screen and (min-width:794px) {
	.logo {	max-height:250px;left: 0px;}
	#peterundsieglinde_jpg2 {display:none;}
	#peterundsieglinde_jpg1 {display:block;}
	.peterundsieglinde_jpg {float:left;margin:0px 20px 20px 0px;}
	#main_stage {max-width: 900px;}
}	
