@charset "utf-8";
/* CSS Document */

@media all  {
	
	*  {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		margin: 0;
		padding: 0;
		box-sizing: border-box; /* width von einer Box berechnet sich aus Content + Padding + Border (im  zu content-box) */
		
	}
		
	body  {
		font-family: "Monserrat-Regular", Verdana, sans-serif;
		font-size: 1em;
		line-height: 1.5em;
		color: #363535;					/*allgemeine Schriftfarbe der Website*/
		background-color: #ffffff;		/*Hintergrundfarbe der Website*/
	}

	html  {
		height: 101%;
	}
	
	#wrapper  {
		max-width: 1000px;
		margin: 0 auto;
	}
	
		
	/*Elemente--------------------------------------*/
	
	img  {
		max-width: 100%;
		
	}
		
}