* {
    padding: 0;
    margin: 0;
}

body {
    text-align: center;
    font-family: Arial, Verdana, sans-serif;
    font-size: 12pt;
    padding-left: 0.5em;
    background-color: gainsboro;
    width: 720px;
    margin: 0 auto;
}

header, footer, section {
    display: block;
    background-color: white;
}

h1 {
    text-align: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    font-family: sans-serif;
    font-size: 18pt;
    font-weight: bold;
}
h2 {
    text-align: center;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    font-family: sans-serif;
    font-size: 14pt;
    font-weight: bold;
    padding-left: 0.3em;
}   
h2 a {
    text-align: center;
    text-decoration: none;
    color: #A19033;
}

img {
    border: 0;
    width: auto;
}
 
#header {
    text-align: center;
    margin: 0 auto;
}

#header a {
    width: auto;
    line-height: 2.5em;
    font-size: 2.5em;
    text-decoration: none;
    color: black;
}

#header p {
    line-height: 1.1em;
    font-size: 1.7em;
    color: gray;
}

#section p {
    text-align: center;
    margin: 0 auto;
    padding-bottom: 1em;
    padding-left: 0.5em;
}

a {
    text-decoration: none;
    font-weight: bold;
    color: gray;
}

a:hover {
    text-decoration: underline;
}

#footer {
    padding-bottom: 1em;
}

#footer p {
    text-align: center;
    height: 24px;
    font-size: 12pt;
    padding-top: 1em;
}

.bildrechts {
    background-color: white;
    border: 0px;
    float: right;
    padding: 1em;
    margin-left: 1em;
}

.bildlinks {
    background-color: white;
    border: 0px;
    float: left;
    padding: 1em;
    margin-right: 1em;
}


/* Optimierung für Handies und Co 720px = 45em */

@media only screen and (max-width: 45em) {

    html, body {
           width: auto;
    }

    #header a {
        width: auto;
        line-height: 1.5em;
        font-size: 2.0em;
        text-decoration: none;
        color: black;
    }

    #header p {
        line-height: 1.2em;
        font-size: 1.3em;
        color: gray;
    }
    
}