/* --- Allgemeine Festlegungen---  */
/* Grundfarbe: #ffba02;  Gelb
   Schriftart: 'Calibri', sans-serif;
   Schriftfarbe Überschriften: #00857d; Grün
   Graufarbe: #707070;
*/

* { margin:0; padding: 0; }

@media screen and (max-width: 1024px) {
	body { 
	 
	font-size: 1rem!important; 
	
}
}

body { 
	margin: auto; /* alles zentriert im Browser */ 
	align-items: center;
    justify-content: center;
	font-family: "Calibri", sans-serif; 
	font-size: 1.5rem; 
	color:#707070; 
	max-width: 60em; /* maximale Breite */
}

/* Gelbe Kopfzeile */
header {
	background-color: #ffba02; /* Gelb */
	height: 1.5em;
	margin-top: 4%;
}
header img {
	float: right;
	margin-top: -3%;
	margin-right: 2%;
}
/* Überschrift */
#ueberschr {
	clear: both;
	text-align: center; 
	color: #00857d; 
}
/* Inhaltsblock*/
main {
	display: flex;
	flex-direction: row;
	flex-flow: row wrap;
	align-items: center;
    justify-content: center;
}
 
/* Foto */
#foto {
	margin-top: 2%;
	margin-bottom: 3%;
	
	width: 13em;
	align-items: center;
    justify-content: center;
}

/* Text */
#text {
	width: 35em;
	padding-left: 4%;
	margin-top:2%;
	align-items: center;
    justify-content: center;
	box-shadow:0.4em -0.4em 0.4em #ffba02; /* Gelb */
	border: 2px solid #ffba02; /* Gelb */
}
#text h2 {
	color: #00857d;
	padding-top: 2%;
}
#text ul {
	list-style-image: url(img/icon.png);
    line-height: 3rem;
	list-style-position: inside;  
}
/* Impressum */
#impressum {
	float:clear;
	margin: auto;
	padding: 2%;
}
#impressum h2, #impressum h3 {
	color: #00857d;
	margin-top:1em;
}
#impressum p, h4{
	margin-top:1em;
}

#impressum ul{
	list-style-position: inside;
	list-style-type: circle;
}
#impressum strong {
	color: #00857d; /* Grün */
	font-weight: normal;
}

/* Gelbe Fußzeile */
footer {
	clear: both;
	background-color: #ffba02; /* Gelb */
    height: 1.5em;
	max-width: 60em;
}



@media print {
  /* zusätzliche oder abweichende CSS-Regeln für Drucker */
}

