/*======================================================================
Normalisierung, Startwerte
======================================================================*/
*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

html {
	font-family: adelle, serif;
	font-style: normal;
	font-weight: 400;
	color:#5e6562;
	font-size: 18px;
	line-height: 1.3;
	background-color: white;
	-webkit-text-size-adjust: none; /*keine Textvergrösserung iphone*/
}
@media screen and (max-width : 960px) { 
	html {
		font-size: 16px;
	}
}

/*Farbband
-----------*/
#farbband {
	display: block;
	height: 16px;
	max-width: 100%;
	background: #ffffff url("../img/uvofarbband.png") no-repeat right top;
	background-size: auto 100%;
}

/*Layout
-----------------*/
.maxbreite{
	max-width: 880px;
	margin: 0 auto;
}
@media screen and (max-width : 960px) { 
	.maxbreite{
		max-width: 100%;
		margin: 0 7%;
	}
}
@media screen and (max-width : 400px) { 
	.maxbreite{
		margin: 0 5%;
	}
}

/*Adresse
-----------------*/
address {
	font-style: normal;
	color:#505955;
	margin-top: 25px;
}
address span {
	white-space: nowrap;
}
address span + span::before {
	content: " | ";
	padding-right: 5px;
}
address span + span {
	padding-left: 5px;
}
a {
	text-decoration: none;	
	color:#505955;
}

@media screen and (max-width : 960px) { 
	address {
		padding-bottom: 50px;
	}
	main address span {
		display: block;
		line-height: 1.5;
		padding: 0;
	}
	address span + span::before {
		content: "";
		padding: 0;
	}
}

/*======================================================================
Typografie
======================================================================*/

/*Überschriften 
...............*/
h1 {
	font-size: 200%;
	font-weight: 400;
	margin: 100px 0 200px 0;
}
@media screen and (max-width : 960px) { 
	h1 {
		margin: 50px 0 100px 0;
	}
}

@media screen and (max-width : 400px) { 
	h1 {
		font-size: 155%;
	}
}

h2 {
	font-size: 130%;
    font-weight: 400;
    color: #5e6562;
    margin-top: 30px;
    margin-bottom: 25px
}


nav {
	padding: 60px 0;
}
nav a {
	border-bottom: 1px solid #505955;
	margin-right: 30px;
}