@charset "UTF-8";

/* CSS Document */


*{
	margin: 0px;
	padding: 0px;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 16px;
	
}
body{
	_color: #fff;
}
h1{
	color:#0054A6;
	margin-bottom: 20px;
}
/*Parent Frame*/
.flexBox{
	display:flex; /*ersetzt float // nicht konsistent Browser PreFix notwendig*/
	-webkit- display:flex;
	-ms- display:flex;
	flex-direction: row /*setzt Boxen auf Zeile*/;
	_flex-direction: row-reverse /*setzt Boxen auf Zeile ersetzt float: right*/;
	justify-content: center; /*flex-end; center; space-around; space-between;*/
	flex-wrap: wrap; /*nowrap; wrap-reverse*/
	align-items: stretch; /*baseline; center; flex-start; flex-end;*/
	width: 95%;
	margin: 2,5%;
	_background: #BFB4B4;
}
/*Child Frames*/
.flexElement{
	width: 44%; /*entscheidend f�r den Einsatz von @media*/
	_background:#346F1A;
	text-align:left;
	_color: #fff;
	margin: 10px;
	_padding: 15px 15px 0;
	
}
.coronaflexindexLink {
	text-decoration: underline;
	text-align: center;
	margin-bottom: 10px;
	font-size: 27px;
	font-weight: bold;
}

h2{
    text-decoration: underline;
    font-size: 18px;
    text-align: center;
}
.flexElement img{
	float: left;
	margin-right: 5px;
	width: 165px;
	height: 246px;
}
.indexLink {
	text-decoration: underline;
	text-align: center;
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: bold;
}
@media only screen and (max-width: 480px) {/*Das ist smartphone portraitformat*/
  body {
    background-color: lightblue;
  }
	.flexElement{
		_background: blue;
		width: 100%;
		
	}
}
@media only screen and (max-width : 768px ){/*Das ist Tablet portraitformat*/
  body {
    _background-color: lightblue;
  }
	.flexElement{
		_background: red;
		width: 100%;
		
	}
}
/*Parent Frame*/
.gridBox{
	display:grid; /*ersetzt float // nicht konsistent Browser PreFix notwendig*/
	grid-template-columns: 25% 25% 25% 25%;
	grid-template-rows: 25% 25% 25% 25% 25%;
	grid-template-areas:
		"header		header	header	sidebar"
		"content	content content	sidebar"
		"content	content	content	sidebar"
		"footer		footer	footer	sidebar";
	width: 90vh;
	height: 100vh;
	margin: 5%;
	background: #BFB4B4;
}
/*@media*/
@media screen and (min-width : 1200px ){
	.gridBox{
		grid-template-areas:
		"header		header	header	header"
		"content	content content	content"
		"content	content	content	content"
		"footer		footer	footer	footer";
	}
}

/*Child Frames*/
.gridBox div {
	width:100%;
}
.box1{
	background: #346F1A;
	grid-area: header;
}
.box2{
	background: red;
	grid-area: content;
}
.box3{
	background: orange;
	grid-area: footer;
}
.box4{
	background: blue;
	grid-area: sidebar;
}
