/* Generelles*/
body {
    position:relative;
    /*background-image: url(pics/Sitehintergrund.png);
    background-repeat: no-repeat
    background-color:  #DCDCDC;*/
/*    background: rgb(200,0,0);*/
    background: linear-gradient(180deg, rgba(200,0,0,1) 0%, rgba(240,237,239,1) 47%, rgba(196,114,182,1) 100%);
    background-repeat: no-repeat
    background-size: 100%;
    font-size: 100%;
    margin: 0em;
    padding: 0em;
}

h1 {
    font-size: 2.5em;
    line-height: 3.8em;
    font-family: Helvetica;
    font-weight: 100;
    color: chocolate;
    margin: 0em;
}

h2 {
    font-size: 1.5em;
    line-height: 1.5em;
    font-family: Helvetica;
    font-weight: 100;
    color: #2F2D2C;
    margin-top: 0.5em;
    margin-bottom: 0.2em;
    padding: 0em;
    text-align: center;
}

p {
    line-height: 1.25em;
    font-family: Helvetica;
    font-weight: 100;
    color: #2F2D2C;
    margin: 0em;
    padding: 1.25em;
    text-align: justify;    
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: square;
    line-height: 1.25em;
    font-family: Helvetica;
    font-weight: 100;
    color: #2F2D2C;
    margin: 0em;
    padding:0em;    
}

img {
    width: 90%;
    height: auto;
    max-width: 100%;
}

a {
    text-decoration: none;
}

/* Header */
header {
    display: block;
/*    background: #2F2C2C;*/
    text-align: center;      
}

header img {
    max-width: 900px;
    max-height: 5.5em;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}

/* Navigation */
nav {
    display: block;
    margin-top: 1em;
    height: 2em;    
    text-align: center;
}

nav ul {
    display: block;
}

nav ul li {
    display: inline;
    margin: 0em 0.188em 0em 0.188em;
    white-space: nowrap;
}

nav ul li a {
    color: yellow;
    font-size: 1.5em;
    line-height: 1.5em;
    padding: 0.4em 0.2em 0em 0.2em;
}

nav ul li a:hover {
    background-color:darkslategray;
    border-bottom: 0.188em solid #E7590B;      
}

nav ul li a.active {
    border-bottom: 0.188em solid yellow; 
}

/* Inhaltsbereich */
#main {
    display: block;
    width: 96%;
    max-width: 1500px;
    margin: 1.25em auto;
    padding: 0em;
}

#main article {
    display: inline-block;    
/*    background: #FFFFFF;*/
    vertical-align: top;
    margin: 0em;
    padding: 0em;
    text-align: center;
}

#main article img {
    width: 23.8%;
    max-width: 560px;
    margin-left: 0.3em;
    margin-right: 0.3em;
    box-shadow: 0px 0px 10px -5px #4C4948;
    border-radius: 5px;
}

aside {
    display: block;
    max-width: 1500px;
    width: 96%;
    margin: auto;
    text-align: center;
    padding: 0em;
    vertical-align: top; 
}

aside section {
    display:block;
    margin-bottom: 0em;
/*    background: #FFFFFF;*/
    border-bottom: 0.188em solid #E7590B;    
}

#main buch1 h2 {
    padding: 1em 1.8em 1em 1.8em;
}

#main aside section ul {
    padding: 0em 1.875em 1.25em 2.5em;    
}

/* Fußzeile */
footer {
    position: fixed;
    left: 0px;
    bottom: 0px;
    height: 1.8em;
    width: 100%;
    display: block;
    background: #2F2C2C;
    text-align: center;
}

footer ul {
    display: block;
    width: 100%;
    max-width: 980px;
    text-align: left;
    margin: 0px auto;
}

footer ul li {
    display: inline;
    font-size: 0.8em;
    line-height: 2.8em;
    color: #E2DBDB;
    padding: 0em 0.625em 0em 0.625em;
}

footer ul li a {
    color: #E2DBDB;
}

/* Mobile Style */
@media screen and (max-width: 1100px)  {
    body {
        font-size: 90%
    }
    nav {
        height: 3.5em;
    }
    nav ul li a {
        color:black;
        font-weight: 700;
    }
}
    
@media screen and (max-width: 800px) {
    body {
        font-size: 80%;
    }
    nav ul li a {
        color:black;
        font-weight: 700;
    }
    
}

@media screen and (max-width: 550px) {
    body {
        font-size: 75%;
/*        background-color: darksalmon;*/
/*        background-image: none;*/
        font-weight: 700;
    }
    
    #main article {
        display: block;
    }
    #main article img {
        width: 100%;
        display: block;
    }
    aside section {
        font-weight: 700;
    }    
    nav ul li a {
        color:black;
        font-weight: 700;
    }
    
}



