html { 
  box-sizing: border-box; 
  background: rgba(255, 255, 255, 0);	
} 

*, ::before, ::after { 
  box-sizing: inherit; 
}

body {
	max-width: 75em;
	margin:0 auto;
	padding: 0;
	background: rgba(255, 255, 255, 0);	
	color: rgb(0, 0, 0); 
	font: normal 1em Arial, sans-serif;
}




header {
	position: relative;		
	height: 210px;
	margin: 2em  0  0 3em;
	background: rgba(255, 255, 255, 0) url("../Start.gif") no-repeat right; 
	background-size: contain; 			 
	padding: 0 0 0.5em;
}

header a h1,
header a p {			/*Die Angaben für h1 müssen mit einem genauen Selektor überschrieben werden. */
	color: rgba(255, 255, 255, 0); 
	border-left: 0;
	padding: 0;
    display: table;		/* Überschriften und Absätze sind sonst immer 100% breit, durch display:table und display: inline-block; für das Elternelement a.ribbon wird das Banner nur so breit wie nötig. */
}

.ribbon {
	display: inline-block;
	position: relative;	
	margin: 2em 0 2em -1.5em;
	padding: 0.5em 1em;
	background: rgba(255, 255, 255, 0);
}
 
.ribbon::before{
	display: block;
	width: 1.5em;
	height: 0;
	position: absolute;
	bottom: -1.5em;
	left: 0em;
	content: "";
	border-bottom: 1.5em solid transparent;
	border-right: 1.5em solid rgba(255, 255, 255, 0);
}
 
/** CONTENT **/

main {
	margin: 0 0 1em;
	padding: 1em;
	background: rgb(255, 255, 255);
}

h1,
h2 {
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; 
	padding-left: 1em; 
	color: rgba(199, 51, 51, 0); 
	text-transform: uppercase;
	border-left:5px solid #ffffff;
}
	
	



a 	{ 
	outline: none; 
	text-decoration: none; 
}
a:hover, 			/* Durch Maus oder Tastatur angewählte Verweise werden sichtbar gemacht */
a:focus { 
	color: rgba(226, 25, 25, 0); 
	text-decoration: none; 
	background-color: rgba(201, 30, 30, 0);	
}

a.more	{ 
	float: right; 
	font-weight: bold; 
}













	





	
		
