/*Generelles StyleSheet zu Schriftgraveur-Seiten*/

/* Verwendete Farben:
 * #4c4c4c; Dunkelgrau für Text allgemein
 * #937546; Dunkelocker für Links
 * #c49c5e; Ocker für Hilfe-Rand
 * #fbf8f3; Hellocker für Hilfefenster-Hintergund
 * #503100; Dunkelbraun für Hoover und aktive Seite
*/

body{
    display: flex;
    margin: 0.5em 1em ;
    flex-flow: row wrap;
    font-family: serif;
    letter-spacing: 0.15em;
    font-size: large;
    color: #4c4c4c;
}
    
header{
    flex: 1 100%;
    background-image: url('bilder/background_head.png');
    padding: 0.5em 0em;
}

header img{
    width: 100%;
    height: auto;
    margin: auto;
}

article{
    flex: 17 1 0%;
    order: 2;
}

section.main-content{
    padding: 0 2em 0 2em;
}

aside{
    flex: 1 auto;
    width: 2em;
}

aside.left{
    order: 1;
    background-image: url('bilder/background_right.png');
    background-repeat: repeat-y;
    background-position: left;
}
aside.right{
    order: 3;
    background-image: url('bilder/background_right.png');
    background-repeat: repeat-y;
    background-position: right;
}

footer {
    background-image: url('bilder/background_head.png');
    line-height: 50px; /*Wegen vertikaler Zentrierung von Text*/
    text-align: center;
    flex: 1 100%;
    order: 4;
}

footer ul li {
    display: inline-block;
}

footer a{
    font-size: small;
    color: #4c4c4c;
}

a {
    color: #937546;
    text-decoration: none;
}

li a:hover {
    color: #503100;
}

li a:active{
    color: #937546;
    font-weight: bold;
}

li a img {
    border: 5px outset #937546;
    border-radius: 16px;
    box-shadow: 6px 6px 6px 0px #c49c5e;
    margin-bottom: 20px;
}

li a:hover img{
    border-color: #c49c5e;
    box-shadow: 6px 6px 6px 0px #937546;    
}


.small {
    font-size: small;    
}

section.quote {
    margin-left: 1em;
    margin-bottom: 2em;
}

section.quote q {
    font-family: serif;
    font-style: italic;
    margin-bottom: 0em;
 /*   max-width: 50%;
    display: block;*/
}
section.quote p.small {
    margin-top: 0.2em;
}

img.separator{
    height: 2px;    
}

.logo {
    width: 100%;
    max-width: 570px;
    margin: auto;
    text-align: center;
}

.prominent {
    color: black;
}

h3 {
    border-bottom: 1px solid #c49c5e;
}

.help {
    border: 1px solid #c49c5e;
    margin-bottom: 3px;
}

.help_window{
    display: none;
    position: absolute;
    border: 1px solid #c49c5e;
    background-color: #fbf8f3;
    margin-top: 20px;
    margin-left: -100px;
    padding: 10px;
    font-size: medium;
    width: 30%;
    color: rgb(0,0,0);
}

.resizable {
    -webkit-transition: all 1s; /*Für Webkitbrowser*/
    transition: all 1s;
}

.resizable:hover{
    -ms-transform:
        scale(2,2)
        translate(30px, 10px);
    -webkit-transform:
        scale(2,2)
        translate(30px, 10px);
        
    transform:
        scale(2,2)
        translate(30px, 10px);
}