@charset "utf-8";

* {
margin: 0;
padding: 0;
/*-webkit-appearance: none;
-moz-appearance: none;*/
}

*, *:before, *:after {
     box-sizing: border-box;
    -moz-box-sizing: border-box;
}

html, body {
     height: 100%;
}

body {
	font-family: Trebuchet MS, Verdana, Segoe, Segoe UI, DejaVu Sans, " sans-serif";
	font-size: 16px;
	color: #333333;
}

a img {
border: none;
}

img {
	max-width: 100%;
	height: auto;
}

#bg {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	display: block;
	background: url(bilder/bg.jpg) no-repeat center right;
	background-size: cover;
}

#content {
	width: 90%;
	max-width: 900px;
	margin: 5% 0 5% 5%;
	background-color: #F5F4EF;
	padding: 20px;
	border-radius: 10px;
	box-shadow: rgba(0,0,0,0.5) 10px 10px 10px;
	overflow: hidden;
}

#links {
	width: 304px;
	float: left;
	margin-right: 20px;
	text-align: center;
}

#rechts {
	float: left;
	width: calc(100% - 324px);
	
}

h1 {
	color: #00830B;
	font-size: 26px;
	font-weight: normal;
	font-style: italic;
	
}

h2 {
	font-size: 16px;
	color: #333333;
	margin-bottom: 15px;
}

h3 {
	text-align: center;
	color: #00830b;
	font-weight: normal;
	font-style: italic;
	margin-bottom: 15px;
	font-size: 22px;
}

p {
	margin-bottom: 15px;
	line-height: 26px
}

a {
	color: #00830b;
	
}

a:hover {
	color: #000000;
}

.small {
	font-size: 12px;
}



/*================ Responsive ================*/

@media (max-width: 660px) {
	
	#links {
	width: 100%;
	float: none;
	margin-right: 0px;
	text-align: center;
}

#rechts {
	float: none;
	width: 100%;
	
}

}