body{
	margin: 0px;
	font-family: Calibri;
	background: #ffffff;                       
	max-width: 100%;
	height: auto;     
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-template-areas:	"head"
							"nav "
							"main"
							"aside"
							"foot";
}

.WebbildMitSchrift{
	width: auto;	
	position: relative;
	/*border: 5px solid red;*/
}

.WebbildMitSchrift img{
	display: block;
}

.haupttext{
	height: 3em;
	width: auto;
	position: absolute;
	bottom: 0;
	background-color: silver;
	background-color: hsla(0,0%,100%,0);
	text-align: left;
	font-size: 20pt;
	font-family: arial black, arial;
	font-weight: bold;
	color: white;
	padding-left: 50px;
	
}

.untertext{
	height: 3em;
	width: auto;
	position: absolute;
	bottom: 0;
	background-color: silver;
	background-color: hsla(0,0%,100%,0);
	text-align: left;
	font-size: 10pt;
	font-family: arial;
	font-weight: normal;
	color: white;
	padding-left: 50px;
	
}

a{
	color: #83a973;
	text-decoration: none;
	font-family: arial, armenian;
	font-size: 15px;
	font-weight: bold;
	
}

ul{
	list-style-type: none;
	padding-left: 120px;
}

h1 {
	text-align: center;
	font-size: 15px;
}

.liste{
	list-style-type: none;
	padding-left: 40px;
	color: #83a973;
	text-decoration: none;
	font-family: arial, armenian;
	font-size: 15px;
	font-weight: bold;
}


.mail{
	width: auto;
	text-align: center;
	font-size: 15pt;
	font-family: arial;
	font-weight: normal;
	color: #83a973;
	padding-left: 20px;
	padding-top: 0px;
}

.gruss{
	text-align: center;
	font-size: 20pt;
	font-family: cursive;
	font-weight: normal;
	color: #83a973;
	padding-left: 20px;
	
}

header, nav, main, section, aside, footer {
	
	padding-top: 10px;
	padding-bottom: 0px;
	padding-left: 10%;
	padding-right: 10%;
	margin: 0px;
}

header {
	background-color: #ffffff;
	border-color: #ffffff;
	grid-area: head;
}

nav {
	background-color: #FFFfff;
	border-top: 1px solid grey;
	grid-area: nav;
}

main {
	background-color: #FFFFFF;
	border-top: 1px solid grey;
	grid-area: main;
	
}

aside {
	background-color: #FFffff;
	border-top: 1px solid grey;
	grid-area: aside;
}

footer {
	background-color: ffffff;
	border-top: 1px solid grey;
	grid-area: foot;
	text-align: center;
}

@media (min-width: 40em) {
	body{
		grid-template-columns: repeat(2, 1fr);
		grid-template-areas:	"head head"
								"nav  aside"
								"main main"
								"foot foot";
	}
	
	h1 {
		text-align: center;
		font-size: 40px;
	}
}

@media (min-width: 60em) {
body{
	grid-template-columns: repeat(4, 1fr);
	grid-template-areas:	"head  head head head"
							"nav   main main main"
							"nav   aside aside aside"
							"foot  foot foot foot";
	}
	
	h1 {
		text-align: center;
		font-size: 50px;
	}
}

@media (orientation: portrait) {
	footer {
		display:none;    
	}
}
