/*   Selektor{Eigenschaft:Wert;}  */
html {
  box-sizing: border-box;
}

*, ::before, ::after {
  box-sizing: inherit;
  margin:0px;
  /* setzt alle Außenabstände auf 0 zurück */
}

body{
	font-family:Verdana, Arial, sans-serif;
	font-size:1.3em;
	margin:10px;
	}
	
#wrapper{
	max-width: 1200px;
	margin: 50px auto;
	padding: 50px;
}	
/* Das legt die Schrift für das gesamte Dokument fest. */
h1{color:#05A312;}
/* Was zuletzt gesagt wird gilt.*/
h1{
	color:#000;
	font-size:2.2rem;
	font-weight:100;
	text-align:left;
	margin-bottom: 20px;
	}
	
h2{
	margin: 10px 0px;
}
	
p{
	line-height:1.5em;
	text-align:justify;
	margin-bottom:10px;
	}
	
main ul{
	margin-bottom: 10px;
}

a{
	color:#000080;
	text-decoration:none;
	}

/*a:visited{
	color:#910b0b;
}*/


.flex-container {
  display:flex;
  }