/* Grundlayout */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    font-family: Calibri, Arial, sans-serif;
    background: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    background: url(design-img/hg.jpg) repeat #8a1e25;
}


/* Bilder */

img {
    max-width: 100%;
    height: auto;
}


/* Header */

.div-banner {
    width: 100%;
    background: url(design-img/hg.jpg) repeat #8a1e25;
    border-bottom: 1px solid #ccc;
    padding: 20px 5%;
}


.div-banner img {
    width: 270px;
    max-width: 100%;
}


/* Navigation */

.div-navi {
    margin-top: 15px;
}


.div-navi a {
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    line-height: 1.4rem;
    margin-right: 8px;
}


.div-navi a:hover {
    text-decoration: underline;
}


/* Text */

p,
ul,
ol {
    margin: 0 5% 18px 5%;
    font-size: 1.1rem;
    line-height: 1.4rem;
    color: #fff;
}


li {
    margin-bottom: 12px;
}


a {
    color: #fff;
}


/* Überschriften */

h1 {
    margin: 20px 5% 30px 5%;
   font-family: "Times New Roman", serif;
    font-size: 2.2rem;
    line-height: 3rem;
    font-weight: normal;
    color: #fff;
}


h2 {
    margin: 10px 5% 25px 5%;
    font-family: "Times New Roman", serif;
    font-size: 2rem;
    line-height: 2.5rem;
    font-weight: normal;
    color: #fff;
}

h3 {
    margin: 40px 5% 25px 5%;
    font-family: "Times New Roman", serif;
    font-size: 1.8rem;
    line-height: 2.3rem;
    font-weight: normal;
    color: #fff;
}


/* Bilder im Text */


.img-left {
    float: left;
    width: 225px;
    margin: 11px 20px 25px 0;
}



.img-right {
    float: right;
    width: 250px;
    margin: 11px 0 15px 20px;
}


/* Graue Boxen */

.box-hellgrau {
    width: 100%;
    margin: 40px 0;
    padding: 25px 0;
    background: #e4e4e4;

    box-shadow: 0 0 14px -4px rgba(0,0,0,0.5);
}


.box-hellgrau p {
    color: #000;
}


.box-hellgrau h2 {
    color: #8b1e24;
}


.zitat {
}


/* Lesungen */

.box-termine {
    margin: 0 5%;
}


.box-termine img {
    width: 100%;
}


.box-links,
.box-rechts {
    width: 50%;
    float: left;
}


.box-termine:after {
    content: "";
    display: block;
    clear: both;
}


/* Leseproben */

.leseprobe-rechts {
    float: right;
    width: 45%;
    margin-left: 30px;
}


/* Buttons */

a.button {
    display: inline-block;
    text-decoration: none;
    background: #fff;
    border-radius: 8px;
    color: #861d24;
    padding: 8px 16px;
    font-size: 1.2rem;
}


a.button:hover {
    background: #eee;
}


/* Bücher */

table {
    width: 90%;
    margin: 30px auto;
}


td {
    vertical-align: top;
    padding: 20px;
}


td img {
    width: 350px;
    max-width: 100%;
}


/* Footer */

#div-unten {
    width: 100%;
    margin-top: 80px;
    padding: 25px 0;
    background: #fff;
    text-align: center;
}


#div-unten p {
    color: #444;
}


#div-unten a {
    color: #444;
    font-size: 1rem;
}


#div-unten a:hover {
    color: #000;
}


/* Desktop */

@media (min-width: 900px) {


    .div-banner {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;

        display: flex;
        justify-content: space-between;
        align-items: center;

        padding: 15px 5%;
    }


    .div-banner img {
        width: 250px;
    }


    .div-navi {
        margin-top: 0;
    }


    body {
        padding-top: 120px;
    }


    p,
    ul,
    ol {
        margin-left: 14%;
        margin-right: 14%;
        font-size: 1.25rem;
        line-height: 1.7rem;
    }


    h1 {
        margin-left: 14%;
        margin-right: 14%;
        font-size: 2.2rem;
    }


    h2 {
        margin-left: 14%;
        margin-right: 14%;
    }
	
	
	  h3 {
        margin-left: 14%;
        margin-right: 14%;
    }


    .box-termine {
        margin-left: 14%;
        margin-right: 14%;
    }


    table {
        width: 70%;
    }

}



@media (min-width: 1200px) {


    .div-banner {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;

        display: flex;
        justify-content: space-between;
        align-items: center;

        padding: 15px 13.7%;
    }
	
}



/* Kleine Bildschirme */

@media (max-width: 700px) {


    .div-banner {
        text-align: center;
    }




.div-navi a {
    font-size: 0.95rem;
    line-height: 1.4rem;
    margin-right: 0px;
}



    h1 {
        font-size: 1.9rem;
        line-height: 2.4rem;
    }


    h2 {
        font-size: 1.7rem;
    }
	
	h3 {
        font-size: 1.6rem;
    }



    .img-left {
        float: none;
        display: block;
        width: 100%;
        margin: 10px auto 20px auto;
    }

    .img-right {
        float: none;
        display: block;
        width: 100%;
        margin: 10px auto 20px auto;
    }




    .box-links,
    .box-rechts {
        width: 100%;
        float: none;
    }


    table,
    tbody,
    tr,
    td {
        display: block;
        width: 100%;
    }


}

