@charset "utf-8";
body {
	max-width: 960px;
	background-color: #333;
	margin: 1em auto;
	padding: 0;
    font-family: Arial, Helvetica, sans-serif;
	font-size: small;
	line-height: normal;
}

/* ~~ Element-/Tag-Selektoren ~~ */
ul, ol, dl { /* Aufgrund von Abweichungen zwischen verschiedenen Browsern empfiehlt es sich, die Auffüllung und den Rand in Listen auf 0 einzustellen. Zu Konsistenzzwecken können Sie die gewünschten Werte entweder hier oder in den enthaltenen Listenelementen (LI, DT, DD) eingeben. Beachten Sie, dass die hier eingegebenen Werte hierarchisch auf die .nav-Liste angewendet werden, sofern Sie keinen spezifischeren Selektor festlegen. */
	padding: 0;
	margin: 0;
	background-color: #FFF900;
}
h1, h2, h3, h5, h6, p {
	line-height: normal;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	
}
h4  {
	line-height: normal;
	color: #090;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}

a img { /* Dieser Selektor entfernt den standardmäßigen blauen Rahmen, der in einigen Browsern um ein Bild angezeigt wird, wenn es von einem Hyperlink umschlossen ist. */
	border: none;
}

/* ~~ Die Reihenfolge der Stildefinitionen für die Hyperlinks der Site, einschließlich der Gruppe der Selektoren zum Erzeugen des Hover-Effekts, muss erhalten bleiben. ~~ */
a:link {
	color: #333;
	font-size: 12px;
}
a:visited {
	color: #6E6C64;
}
a:hover, a:active, a:focus { /* Durch diese Gruppe von Selektoren wird bei Verwendung der Tastatur der gleiche Hover-Effekt wie beim Verwenden der Maus erzielt. */
	text-decoration: none;
}

.contentlink {
	padding-bottom: 10px;
	padding-left: 10px;
	color: #000;
}
.contentlink a{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #000;
	text-decoration: none;
				
}
.contentlink a:hover{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #090;
	text-decoration: underline;
}


/* ~~ Dieser Container mit fester Breite umschließt alle anderen div-Tags. ~~ */
.container {
    background-color: #2E2E2E;
    margin: 10px auto;
    text-align: left;    
}
.content {
	width: 80%; 
    float: left;
	background-color: #2E2E2E;
	font-size: 12px;
	clear: none;
	padding-top: 6px;
	padding-bottom: 6px;
	display: flex;
    align-items: fex-start; /* Anordnung der boxen an der Oberkannte */
	flex-wrap: wrap;           /* Anordnung der boxen kann in mehreren Reihen erfogen*/
	flex-direction: row; /* content_box in einer Reihe */
	justify-content: flex-start; 
	
}
.content_center {
	width: 80%;
    float: left;
	background-color: #2E2E2E;
	font-size: 12px;
	clear: none;
	padding-top: 6px;
	padding-bottom: 6px;
	display: flex;
    align-items: fex-start; /* Anordnung der boxen an der Oberkannte */
	flex-wrap: wrap;         /*  Anordnung der boxen kann in mehreren Reihen erfogen*/
	justify-content: center;
}	
.content_site {
	float: left;
	background-color: #FFF;
	font-size: 12px;
	clear: none;
	border-radius: 6px;
	margin-left: 6px;
	margin-top: 3px;
	margin-bottom: 6px;
	margin-right: 6px;
	padding: 6px;
	flex-basis: 800px;
}

.content_box {
	background-color: #FFF;
	border-radius: 6px;
	box-shadow: 2px 2px 2px grey;
	margin-left: 6px;
	margin-top: 3px;
	margin-bottom: 6px;
	margin-right: 6px;
	display: flex;
	flex-basis: 230px;
	flex-direction: column; /* alle bekommen die gleich Höhe in einer Reihe */
	padding: 6px;	
		
}
.content_box img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 6px;
	}
.content_box_2 {
	background-color: #FFF;
	border-radius: 6px;
	box-shadow: 2px 2px 2px grey;
	margin-left: 6px;
	margin-top: 3px;
	margin-bottom: 6px;
	margin-right: 6px;
	flex-basis: 570px;
	flex-direction: column;
	padding: 6px;
	
}
.content_box_3 {
	background-color: #FFF;
	border-radius: 6px;
	box-shadow: 2px 2px 2px grey;
	margin-left: 6px;
	margin-top: 3px;
	margin-bottom: 6px;
	margin-right: 6px;
	display: flex;
	flex-basis: 300px;
	flex-direction: column; /* alle bekommen die gleich Höhe in einer Reihe */
	padding: 6px;	
		
}
.sidebar {
	float: right;
	width: 20%;
	background-color: #2E2E2E;
	color: #FF0;
	padding-bottom: 6px;
	font-size: 11px;
	padding-top: 6px;
}
.sidebarbox {
	background-color: #FFE900;
	border-radius: 6px;
	width: 168px;
	margin-left: 6px;
	padding-top: 12px;
	padding-bottom: 6px;
	margin-right: 6px;
	padding-left: 6px;
	padding-right: 6px;
}
/* ~~ Für die Kopfzeile wird keine Breite angegeben. Sie erstreckt sich über die gesamte Breite des Layouts. Sie enthält einen Bild-Platzhalter, der durch Ihr eigenes, mit Hyperlink versehenes Logo ersetzt werden sollte. ~~ */
.header {
	margin-bottom: 10px;
	background-color: #FFEE39;
	margin-right: 6px;
	margin-left: 6px;
	padding-right: 6px;
	padding-left: 6px;
	border-radius: 6px;
}
/* ~~ Stile für die Fußzeile ~~ */
.footer {
	background-color: #FFEE39;
	text-align: center;
	border-radius: 6px;
	margin: 6px;
	height: 48px;
	padding-top: 6px;
	padding-bottom: 6px;
	clear: both;
	background-repeat: no-repeat;
}
.footer p {
	color: #808080;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: x-small;
	text-align: center;
	padding-top: 10px;
}
.footer a {
	color: #000;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size: 12px;
	text-align: center;
	text-decoration: none;
}
.footer a:hover {
	color: #000;
	text-decoration: underline;
}

/* Use a media query to add a break point at 600px: */
@media screen and (max-width:600px) {
.content, .sidebar {
    width:100%; /* The width is 100%, when the viewport is 600px or smaller */
}
.content_box {
	flex-basis: 520px;
}
.content_box_2 {
	flex-basis: 100%;
}
.content_site {
	
	flex-basis: 520px;    
}


    
