body {
	color: #656565;
	line-height: 1.5;
	background-color: #e4e8d4;
	font-family: Avenir, 'Avenir Next LT Pro', Montserrat, Corbel, 'URW Gothic', source-sans-pro, sans-serif;
	text-align: left;
	display: block;
}

h1 {
	font-size: 80px;
	color: #5c7200;
	font-weight:900;
}

h2 {
	font-size: 40px;
	line-height: 1.2;
	color: #96ba00;
	margin-top: 60px;
	margin-bottom: 0;
}

strong {
	color: #000000;
}

a {
	color: #009567;
}

img {
	display: block;
}


/*width und max width in combo fkt für große UND kleine Bildschirme zsm
 */
.tisch {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 900px;
}

/* Für typografische Inhalte (Überschriften, Absatz, Liste, Figure und Footer): 
   Maximale Layoutbreite und im Browserfenster zentrieren */
h1,
h2,
p,
ul,
figure,
footer {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

figure img{
	
	width:250px;
	margin-left: auto;
	margin-right: auto;
}
/* Leerzeichen bedeutet Innerhalb - in diesem Fall innerhalb eines Figure tags ist das Bild betroffen -- mithilfe von Komma kann man kombinieren, z.B. figure figcap, figure img und dann die Eigenschaften
 */ 
figure{
	background-color: white;
	width: 250px;
	padding: 20px;
	border-width: 1px;
	border-color: black;
	border-style:solid;
	filter:drop-shadow(1px 1px 2px);
}

ul.gruen,ul.rot{
	transform: translate(3%);
	padding-top: 10px;
	padding-bottom: 10px;

}

ul.nav {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
	text-align: left
}


ul a {
	color: black;
	text-decoration: none;
	;
}

ul.gruen {
	background-color: #bde094
}

ul.rot {
	background-color: #edaba8;
}

footer {
	transform:translate(3%);
	width:100%;
	max-width: 640px;
	margin-top: 6%;
	margin-bottom: 10%;
	border-top:1.5px solid black;
	line-height: 2.5;
	
}

/* ul specified auf alles was nur in ul ist; falls z.B. etwas anderes auch nav genannt wird aber kein ul ist, damit es nicht beeinflusst wird! -> kein Leerzeichen
 */ 

/* statt class auch id möglich -> dann aber in css h1#headline also # nötig, aber nur einmal verwendbar; ids ist class übergeordnet; ids aber eig nicht nötig  
 */