/*---------css reset-------------
--------------------------------*/
* {
padding: 0;
margin: 0;
font-size: 100%;
font-weight: normal;
}

ul,ol {
list-style: none;
}

b,strong {
font-weight: bold;
}

img, a img {
border: none;
}

/*---------font-eigenschaften-------------
--------------------------------*/

html {
font-size: 120%;
}


body {
font-family: Helvetica, Arial, sans-serif;
line-height: 1.5rem;
text-align: left;
color: #663300;
}

h1 {
text-align: center;	
font-size: 2rem;
line-height: 2rem;	
font-weight: bold;
padding-top: 20px;	
}

h2 {
font-size: 1.2em;
font-weight: bold;
padding: 1em 0 1em 0;
}

button {
color: white;	
transition-duration: 0.4s;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
border-radius: 10%;
padding: 10px 15px;
cursor: pointer;
background-image: url("img/goldbutton1.jpg");
background-size: cover;
}

button:hover {
background-color: orange;
color: white;
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);	
}

a:link, a:visited {
text-decoration: none;
background: transparent;
color: #663300;
}

.bi {
font-style: italic;
font-weight: bold;	
}

.i {
font-style: italic;
}

.u {
text-decoration: underline;
}

.hr1 {
color: #663300;
width: 90%;
align: center;
}

main a:hover {
background: #ffcc00;
cursor: pointer;
}

nav li a:hover {
color: red;
cursor: pointer;	
}

nav ul {
padding-top: 20px;
padding-bottom: 20px;	
}

nav {
text-align: center;
}

nav li {
display: inline;
color: #FFCC00;
font-size: 1.5rem;
padding: 5px;
border-right: solid #663300;
}

nav li.first {
border-right: solid #663300;
border-left: solid #663300;
}

footer ul{
padding-top: 20px;	
}

footer li{
text-indent: 2em;	
font-size: 1.1rem;	
}


/*---------layout-------------
--------------------------------*/

#container {
margin: 0px auto;
}

#content {
position: absolute;
background: url(img/bckgrd.jpg) repeat;
width: 100%;
}

header {
background: url(img/bckgrd.jpg) repeat;	
height: 80px;
width: 100%;
position: fixed;
padding-top: 10px;	
border-bottom: 2px solid #ffcc00;
border-top: 2px solid #ffcc00;	
}



main {
width: 95%;
padding: 50px 10px 10px 30px;
}

.abstand {
display: block;	
margin-top: 100px;
text-align: center;	
}

section {
	width: 95%;
	display: inline-block;
	margin-bottom: 50px;
}

div {
	display: inline-block;
	}


img {
display: inline-block;
width: auto;
max-width: 60%;	
height: auto;	
border: 0;
margin-left: 0px;
margin-right: 20px;
margin-bottom: 20px;	
float: left;	
}



footer {
width: 95%;	
padding: 20px 0px;
clear: both;
}





@media screen and (max-width: 650px){

html {
font-size: 100%;
}	

main img {
width: 100%;
max-width: 600px;	
border: 0;
margin-left: 10px;
margin-right: 10px;	
float: none;	
}
	


}