/* CSS */
* {
    padding: 0px;
    margin: 0px;
}

body, html {
    font-size: 16px;
    height: 100%;
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-weight: 300;
}

body {
    background-image: url('../img/bg.jpg');
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    background-color: rgb(240,240,240);
}

h1 {
    font-size: 2em;
}

h2 {
    font-size: 1.2em;
    padding-top: 1em;
}

h3 {
    font-size: 1em;
    padding-bottom: 0.3em;
}

p {
    line-height: 1.4em;
}

#wrapper {
    border-top: 2px solid black;
    border-bottom:  2px solid black;
    width: 970px;
    margin: 40px auto;
    border-radius: 20px;
    background-color: rgba(255,255,255,0.9);
    box-shadow: 0 3px 10px rgba(0,0,0,0.6);
}

nav, #head, #content {
    padding: 15px 50px;
}

#head p {
    font-size: 0.8em;
}

#content p {
    margin-bottom: 20px;
}

nav {
    float: left;
}

nav > ul {
    list-style: none;
}

nav > ul > li {
    display: block;
    padding-right: 0;
    padding-bottom: 5px;
}

nav > ul > li > a {
    color: rgb(0,0,120);
    text-decoration: none;
    font-weight: bold; 
}

nav > ul > li > a:hover {
    color: rgb(120,0,0);
}

#content {
    padding-top: 0;
}

#content p {
    text-align: justify;
}

.produkte {
    overflow: hidden;
    padding: 20px 0;
}

.produkte > div {
    position: relative;
    overflow: hidden;
    width: 400px;
    float: left;
    margin-bottom: 10px;
    margin-left: 20px;
    padding-left: 5px;
    border-bottom: 1px solid rgb(200,200,200);
    
}

.produkte img {
    border-radius: 3px;
    /* border: 1px solid black; */
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.5);
    height: 80px;
    float: left;
    margin: 0 20px 10px 0;
}