/**
 *
 * Browser-Reset
 *
 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color01: #8c8c8c;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: gray;
}

img {
    width: 100%;
    height: auto;
    line-height: 0;
}

figure {
    line-height: 0;
}

html {
    scroll-behavior: smooth;
}

/**
 * 
 * Z-Index;
 * 
 */
main {
    z-index: 0;
}

#slogan {
    z-index: 1;
}

/**
 *
 * Body
 *
 */
body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1em;
    line-height: 1.4em;
    background-color: #000;
    color: #f1f1f1;
    color: grey;
}

/**
 * header
 */
header,
#start {
    position: relative;
    _width: 100%;
    min-height: 80px;
    padding: 0 0 0 0;
}

/**
 * nav
 */
#primarynav,
#legallynav,
.subnav {
    display: flex;
    justify-content: start;
    align-items: center;
    min-height: 80px;
    height: auto;
    overflow: auto;
    border-bottom: 1px solid #333;
}

.subnav {
    justify-content: center;
    min-height: 160px;
    border-bottom: 0px solid #333;
}

#legallynav {
    justify-content: center;
    _border-top: 1px solid #333;
    border-bottom: 0px solid #333;
}

#primarynav li,
#legallynav li,
.subnav li {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-right: 1em;
}

.subnav li {
    margin-right: 4em;
}

.subnav li:last-child {
    margin-right: 0;
}


#legallynav li:last-child {
    margin-right: 0;
}

#primarynav a,
#legallynav a,
.subnav a {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 10px 20px;
    text-decoration: none;
}

.subnav a {
    _background-color: #141414;
    border: 1px solid #696969;
}

.subnav a:hover {
    _background-color: #222;
    border: 1px solid #ccc;
}


#legallynav a:last-child {
    padding: 10px 0px 10px 20px;
}

.mobilelink {
    display: none;
    _display: flex;
    justify-content: start;
    align-items: center;
    padding: 10px 20px;
    min-height: 80px;
}

#legallynav a {
    justify-content: start;
    align-items: center;
    padding: 10px 10px;
    font-size: 0.8em;
}

a.active {
    color: #ccc;

}

#primarynav a:hover {
    color: #ccc;
    transition: color 1s ease;
}

#languages {
    position: absolute;
    right: 1.4em;
    top: 1.9em;
    display: flex;
    justify-content: right;
    align-items: center;
}

#languages li {
    display: inline-block;
    margin-left: 1em;
}


/**
 * main
 */
main,
#content {
    position: relative;
    _width: 100%;
    padding-top: 70px;
    opacity: 0;
}

main,
#content {
    animation-duration: 4s;
    animation-name: slidy;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
}

@keyframes slidy {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.mainheader {
    position: relative;
}

.vid {
    margin: 2em 0 0 8em;
}


.slogan {
    display: block;
    position: absolute;
    right: 8%;
    top: -70px;
    width: auto;
    height: auto;
    text-align: center;
    letter-spacing: 2px;
}

#content a {
    text-decoration: underline;
}

.slogan p {
    margin-bottom: 1em;
}

.slogan span {
    font-size: 1.3em;
}

.preview {
    display: flex;
    justify-content: start;
    align-items: center;
    padding: 4em 0 0 2em;
}

.preview li {
    max-width: 7%;
    margin-right: 2em;
}

.preview li:first-child {
    max-width: 20%;
    margin-left: 5%;
}

.preview li:last-child {
    max-width: 200px;
    padding-bottom: 6px;
}

.row2col2 {
    display: inline-block;
    width: 100%;
    _justify-content: start;
    _align-items: center;
    padding: 2em 2em 2em 2em;
}

.row2col2 li {
    display: block;
    width: 50%;
    float: left;
    padding: 2em 2em 2em 2em;
}

.row2col2 p {
    display: block;
    width: 50%;
    float: left;
    font-size: 1.3em;
    letter-spacing: 2px;
    line-height: 2em;
    min-height: 300px;
    padding: 2em 2em 2em 2em;
    text-align: center;
    color: grey;
}

.row2col2 p:nth-child(3n) {
    clear: both;
}



.titelimage {
    opacity: 0.8;
    width: 90%;
    margin-left: 5%;
    margin-top: 2vh;
    margin-bottom: 3vh;
}

.cover {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    _min-height: 100vh;
}

.cover img {
    height: 60vh;
    width: auto;
    padding-right: 4em;
}

.listen {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 3em 0 0 0em;
}

.listen audio {
    margin: 0 2em 2em 0;
}

.listen figcaption {
    margin-bottom: 0.3em;
    padding-left: 30px;
    line-height: 1.4em;
}

.legally {
    margin: auto;
    margin-top: 4em;
    max-width: 750px;
    _line-height: 1em;
}

.legally * {
    margin: 10px 0 20px 0;
}

.legally ul {
    _margin: 10px 0 10px 10px;
    list-style: disc;
    margin-left: 20px;
}

.legally li {
    margin: 0 0 10px 0;
}

.imp {
    line-height: 1.4em;
}

.imp p {
    margin: 0 0 2em 0;
}


.vh {
    position: relative;
    _display: block;
    _height: 110vh;
    height: auto;
}

.cover-neu {
    display: flex;
    justify-content: center;
    width: 80%;
    margin-left: 10%;
    height: auto;
    padding: 0 0 4rem 0;
}

.cover-neu-img {
    width: 100%;
}


.vheader {
    height: calc(100vh - 80px);
}

.white {
    background-color: #ccc;
}

.separator {
    height: 1px;
    overflow: hidden;
}

.dark_line {
    background-color: #666;
}


.onedisplay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    _height: 110vh;
    height: auto;
}

.onedisplay picture,
.onedisplay img {
    _height: 85vh;
    width: 80%;
    margin: auto;
}

.onedisplay picture {
    display: flex;
    justify-content: center;
    align-items: center;
}

.onedisplay figure {
    position: relative;
}

.onedisplay figcaption {
    position: absolute;
    bottom: 20px;
    line-height: 1em;
}

.last_p {
    height: 125vh;
}

.portrait img {
    height: 90vh;
}

.dark img {
    _height: 70vh;
}

.bookbox {
    display: flex;
    justify-content: center;
    align-items: center;
    _background-color: green;
    height: 44vh;
    padding: 5% 0;
}

.book {
    width: auto;
    height: 100%;
    margin: auto;
}

#content .subnav a {
    text-decoration: none;
}

.threeimages {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.threeimages figure {
    width: 30%;
}

.oneimage {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* #seitenansichten, #subnav_under, */

.subnav {
    margin-top: 2em;
}

#cover,
#seitenansichten,
#subnav_under,
.totop,
#zeichnungen,
#glaeser {
    display: none;
}

#zeichnungen {
    text-align: center;
}

.pcn {
    padding-top: 2em;
    letter-spacing: 2px;
    font-size: 2em;
    font-weight: 100;
    text-align: center;
    line-height: 1.8em;
}

h2 {
    font-weight: 400;
    letter-spacing: 2px;
}

.zrow {
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: baseline;
    _background-color: #040404;
}

.zrow_seiten {
    width: 100%;
    height: auto;
    padding: 3rem 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    _background-color: #040404;
}

.zrow_seiten figure:first-child {
    _margin-right: 3px;
    border-right: 3px solid #dfdfdf;
}


.zfig {
    display: block;
    width: 50%;
    padding: 2rem;
    min-height: 20px;
    _background-color: #040404;
}

#subnav_under {
    margin-top: 2rem;
}


/**
 * footer
 */
footer,
#end {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    _padding: 70px 0 0 0;
    margin-top: 70px;
    border-top: 1px solid #333;
}

.autor {
    display: inline-block;
    font-size: 0.8em;
}

/**
 * wprapper
 */
.wrapper {
    _position: relative;
    min-width: 300px;
    width: 75%;
    max-width: 1200px;
    margin: auto;
}

.papier {
    _background-color: #eae4dd;
    _background-color: #faf0e6;
    background-color: #dfdfdf;
}

.cover-grey {
    _background-color: #eae4dd;
    background-color: #8c8c8c;
}

.pc {
    _padding-top: 10vh;
}

.mobile_off {
    _display: block;
}

.simple_image {
    width: 100%;
    text-align: center;
    margin: 2rem 0 10rem 0;
}

.simple_image img {
    width: 60%;
    height: auto;
    margin: auto;
}

.row_artist {
    padding-bottom: 6rem;
}

.subtext {
    _display: flex;
    _justify-content: space-between;
    padding: 1em 2em 2em 2em;
}

.subtext li {
    padding: 0 0.5rem 0 0.5rem;
}

.big {
    font-weight: 700;
}



/*
 *
 * MEDIA QUERY
 *
 */

@media (min-width: 0px) and (max-width: 768px) {
    .mobilelink {
        display: flex;
        width: 100px;
    }
}

@media (min-width: 0px) and (max-width: 768px) {

    main,
    #content {
        padding-top: 40px;
    }

    .slogan {
        position: relative;
        right: auto;
        top: auto;
        letter-spacing: 1.5px;
    }

    .slogan span {
        font-size: 1.1em;
    }


    .titelimage {
        opacity: 0.9;
        width: 100%;
        margin-left: 0%;
    }

    #primarynav {
        display: block;
        min-height: 0;
        height: 0;
        overflow: hidden;
    }

    #primarynav li:last-child {
        padding-bottom: 30px;
    }


    #primarynav a {
        width: 100%;
        margin: auto;
    }

    .listen * {
        width: 100%;
    }

    .row2col2 {
        display: block;
        width: 100%;

        _padding: 2em 0 2em 0;
    }

    .row2col2 li {
        width: 100%;
        float: none;
    }

    .row2col2 p {
        width: 100%;
        padding: 2em 0 2em 0;
        clear: both;
    }

    #languages {
        right: 0;
    }

    #languages li {
        margin-right: 0.25em;
        margin-left: 0.25em;
        min-width: 26px;
        text-align: center;
    }

    #languages a {
        padding: 20px 5px 20px 5px;

    }

    footer,
    #end {
        display: block;
    }

    .autor {
        display: block;
        text-align: center;
        padding-top: 1.5em;
        padding-bottom: 1.5em;
    }

    .vh {
        display: inline-block;
        width: 100%;
        height: auto;

    }

    .onedisplay {
        flex-direction: column;
        width: 100%;
        _height: 55vh;
        height: auto;
        position: relative;
        top: auto;
        left: auto;
    }

    .portrait {
        _height: 50vh;
        height: auto;
    }

    .last_p {
        _height: 60vh;
        height: auto;
        _padding: 5em 0 0 0;
        border-bottom: 5em solid #ccc;
    }

    .mainheader {
        _height: 50vh;
        height: auto;
    }

    .smallheader {
        _height: 50vh;
        height: auto;
    }

    .audioheader {
        _height: 35vh;
        height: auto;
    }

    .book {
        _height: 45vh;
        height: auto;
    }

    .bookimgsubnav {
        _height: 40vh;
        height: auto;
        padding-top: 3em;
    }


    .onedisplay source,
    .onedisplay img {
        height: 40vh;
        width: 90vw;
        height: auto;
        margin: auto;
    }


    .onedisplay picture {
        width: 90vw;
        height: auto;
        padding: 5em 0 0 0;
    }


    .onedisplay source {
        width: 0vw;
    }


    .onedisplay figcaption {
        bottom: 0px;
    }


    .portrait img {
        width: 70vw;
        margin-right: 10vw;
        margin-bottom: 40px;
    }

    #glaeser {
        padding-top: 0;
        padding-bottom: 0;
    }

    #glaeser>div {
        _height: 30vh;
    }

    #glaeser>div>.onedisplay {
        height: 35vh;
    }

    #glaeser>div>.onedisplay>picture {
        display: flex;
        justify-content: center;
        align-items: center;

        height: 35vh;
    }


    #glaeser>div>.onedisplay>picture>img {
        width: 70%;
        margin-right: 15%;
    }

    .simple_image {
        _width: 100%;
        _text-align: center;
        margin: 10rem 0 10rem 0;
    }

    .simple_image img {
        width: 90%;
        _height: auto;
        _margin: auto;
    }

    .simple_image:first-child {
        margin-top: 5rem;
    }

    .simple_image:last-child {
        margin-bottom: 5rem;
    }

    #legallynav {
        _display: block;
        text-align: center;
        flex-direction: column;
    }

    #legallynav li {
        margin-right: 0;
        margin-bottom: 1em;
    }

    #legallynav a:last-child {
        padding: 0.5em 10px 0.5em 10px;
    }

    .subnav {
        justify-content: center;
        flex-direction: column;
        min-height: 25vh;
        border-bottom: 0px solid #333;
    }

    #end {
        margin-top: 10vh;
        padding-top: 5vh;
        padding-bottom: 5vh;
    }

    .wrapper {
        width: 86%;
        max-width: 450px;
    }

    .subnav {
        margin-top: 0;
        margin-bottom: 2rem;
    }

    .subnav li {
        margin-right: 0;
        margin-top: 5px;
        margin-bottom: 5px;
        width: 100%;
        flex-direction: column;
    }

    .subnav a {
        width: 100%;
        text-align: center;
    }

    .zrow_seiten {
        width: 100%;
        height: auto;
        padding: 1rem 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        _background-color: #040404;

    }

    .zrow_seiten figure:first-child {
        margin-right: 0;
        margin-bottom: 3px;
        border-right: 0px solid #dfdfdf
    }

    .zrow_seiten figure.leer {
        display: none;
    }

    .mobile_off {
        display: none;
    }


    .zrow {
        width: 100%;
        padding: 0rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .zfig {
        width: 100%;
        padding: 1rem;
    }
}

@media (min-width: 700px) and (max-width: 768px) {
    .vh {
        height: 70vh;
    }

    #glaeser {
        padding-top: -150px;
    }

    .glaeser {
        height: 40vh;
    }

    .onedisplay {
        flex-direction: row;
        top: 5vh;
        left: 0;
        width: 100%;
        height: 60vh;
    }

    .smallheader {
        text-align: right;
    }

    .slogan {
        display: inline-block;
        right: 0px;
    }

    .onedisplay img {
        height: 50vh;
        width: auto;
        margin: auto;
    }

    .glaeser img {
        height: auto;
        width: 80%;
    }

    .onedisplay figcaption {
        bottom: 1vh;
    }

    .subnav {
        flex-direction: row;
    }

    .wrapper {
        width: 90%;
        max-width: 750px;
    }

}

@media (min-width: 769px) and (max-width: 1024px) {

    body {
        line-height: 1.2em;
    }

    .slogan {
        right: 2%;
    }

    .wrapper {
        width: 92%;
        max-width: 1000px;
    }
}

@media all and (device-width: 1080px) and (device-height: 810px) {
    .slogan span {
        font-size: 1.1em;
    }

    .wrapper {
        width: 92%;
        max-width: auto;
        _background-color: white;
    }

}

@media all and (device-width: 1366px) and (device-height: 1024px) and (orientation: landscape) {
    .slogan span {
        font-size: 1.1em;
    }

    .wrapper {
        width: 92%;
        max-width: auto;
        background-color: white;
    }

}

@media all and (device-width: 2360px) and (device-height: 1640px) {
    .slogan span {
        font-size: 1.1em;
    }

    .wrapper {
        width: 92%;
        max-width: auto;
        background-color: white;
    }

}