/* nur für die entwicklung: Bereiche färben*/

header,
nav,
footer,
section {
    display: block;
}


/* Effektiv:  */


/* seitliche gestaltung (nicht mehr untereinander) */

* {
    /* universal selector*/
    margin: 0;
    /*ÜBERALL 0, einheitlich in allen browsern, dann müssen aber alle abstände selbst gesetzt werden */
    padding: 0;
    /*ÜBERALL 0, einheitlich in allen browsern, dann müssen aber alle abstände selbst gesetzt werden */
    font-family: Arial;
    font-size: 13pt;
}

header {
    background: white;
    background-image: url(../img/logo.png);
    height: 120px;
    width: inherit;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: top;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    z-index: 2;
}

#bground {
    position: fixed;
    background-color: beige;
    height: 100%;
    width: 800px;
    z-index: 1;
    left: 50%;
    margin-left: -400;
    background: rgba(255, 255, 255, 0.9);
} 

header p {
    text-align: right;
    padding-right: 15px;
}

header a {
    color: white;
}

section {
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 15px;
    margin-left: 50px;
    margin-right: 50px;
    margin-top: 10px;
    z-index: 2;
    margin-bottom: 30px;
}

section a {
    text-decoration: none;
    color: darkorange;
}

section div {
    text-align: center
}

section h1 {
    padding-top: 10px;
    padding-bottom: 0.4em;
    /*em means relativ Schriftgröße*/
    color: #535353;
}

section h2 {
    font-family: Impact;
    font-size: 18pt;
    letter-spacing: 0.1em;
    padding-top: 1em;
    padding-bottom: 0.6em;
    color: #535353;
}

section p {
    padding-bottom: 0.4em;
}

section ul {
    padding-left: 3em;
}

section li {
    padding-bottom: 0.5em;
}

section form {
    font-weight: 700;
    padding-left: 20px;
}

section td {
    padding: 5;
}

section form text {
    padding-right: 20px;
}

section form input,
form textarea,
form button {
    border: 2px solid #dadada;
    border-radius: 7px;
}

#wrapper {
    padding-top: 100px;
    width: 900px;
    margin: 0 auto;
    margin-top: 0;
    z-index: 1;
    position: relative;
    /* center// verteilt gleichmäßig auf dem Bildschirm drumherum */
    text-align: left;
    /* center für ältere Browser gegenwirkung text wieder links */
    /*background-image: url(../img/durchsichtig8.png); */
}

.rotate {
    animation-name: roll;
    animation-duration: 4s;
    animation-duration: 4s;
    -moz-animation-name: roll;
    -moz-animation-duration: 4s;
    -moz-animation-iteration-count: 1;
    -webkit-animation-name: roll;
    -webkit-animation-duration: 4s;
    -webkit-animation-iteration-count: 1
}

@-webkit-keyframes roll {
    from {
        -webkit-transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg)
    }
}

@-moz-keyframes roll {
    from {
        -moz-transform: rotate(0deg)
    }
    to {
        -moz-transform: rotate(360deg)
    }
}

@keyframes roll {
    from {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg)
    }
}

body {
    text-align: center;
    /* center für ältere Browser */
    background-color: black;
    /*background-image: url(../img/background.jpg);*/
    background-attachment: fixed;
    /*fixieren des hintergrundes */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

footer {
    color: white;
    text-align: center;
    clear: both;
    background: white;
    position: fixed;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 30px;
    color: black;
    padding-top: 5;
}

.nav-up {
    animation-name: up;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -moz-animation-name: up;
    -moz-animation-duration: 1s;
    -webkit-animation-name: up;
    -webkit-animation-duration: 1s;
}

@-webkit-keyframes up {
    from {
        top: 0px;
    }
    to {
        top: -72px;
    }
}

@-moz-keyframes up {
    from {
        top: 0px;
    }
    to {
        top: -72px;
    }
}

@keyframes up {
    from {
        top: 0px;
    }
    to {
        top: -72px;
    }
}

.nav-down {
    animation-name: down;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    -moz-animation-name: down;
    -moz-animation-duration: 1s;
    -webkit-animation-name: down;
    -webkit-animation-duration: 1s;
}

@-webkit-keyframes down {
    from {
        top: -72px;
    }
    to {
        top: 0px;
    }
}

@-moz-keyframes down {
    from {
        top: -72px;
    }
    to {
        top: 0px;
    }
}

@keyframes down {
    from {
        top: -72px;
    }
    to {
        top: 0px;
    }
}

footer a {
    font-weight: bold;
    font-family: arial;
    font-style: normal;
    font-size: 16px;
    color: #535353;
    text-decoration: none;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    text-shadow: 2px 2px 1px #C4C4C4;
}

footer ul {
    list-style-type: none;
}

footer li {
    display: inline;
    padding-left: 20
}

html {
    overflow-y: scroll;
}

.validShadow {
    -webkit-box-shadow: 0px 0px 15px 5px rgba(255, 0, 0, .75);
    -moz-box-shadow: 0px 0px 15px 5px rgba(255, 0, 0, .75);
    box-shadow: 0px 0px 5px 5px rgba(255, 0, 0, .75);
}

.buttonStyle {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 2px;
    padding-top: 2px;
    border: solid 1px #535353;
    font-size: 0.8em;
}