body {
    width: 100vw;
    height: 100%;
    margin: 0px;
    font-family: Verdana;
    color: #333333;
}

.slideshow-preload-image {
    grid-column: 1;
    grid-row: 1;
    background-image: url('../front_img1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 80vh;
    animation: slide-preload-image 18s steps(1,end) 1;
    animation-delay: 0s;
}

.slideshow-image1 {
    grid-column: 1;
    grid-row: 1;
    background-image: url('../front_img1.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 80vh;
    animation: slide-image1 18s steps(1,end) infinite;
    animation-delay: 0s;
}

.slideshow-image2 {
    grid-column: 1;
    grid-row: 1;
    background-image: url('../front_img2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 80vh;
    animation: slide-image2 18s steps(1,end) infinite;
    animation-delay: 6s;
    opacity: 0;
}

.slideshow-image3 {
    grid-column: 1;
    grid-row: 1;
    background-image: url('../front_img3.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 80vh;
    animation: slide-image3 18s steps(1,end) infinite;
    animation-delay: 12s;
    opacity: 0;
}

@keyframes slide-preload-image {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes slide-image1 {
    0% {
        opacity: 1;
    }

    33.33% {
        opacity: 0;
    }

    66.66% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slide-image2 {
    0% {
        opacity: 1;
    }

    33.33% {
        opacity: 0;
    }

    66.66% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes slide-image3 {
    0% {
        opacity: 1;
    }

    33.33% {
        opacity: 0;
    }

    66.66% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.header-container {
    display: grid;
    height: 80vh;
    grid-template-columns: 100vw;
    grid-template-rows: 100vh;
    width: 100vw;
    z-index: 0;
}

@media (min-width:1500px) {
    .menu {
        color: #ffffff;
        z-index: 1;
        grid-row: 1/2;
        grid-column: 1/2;
        width: auto;
        position: absolute;
        right: 2vw;
        font-size: 1.4rem;
        margin-top: 0.4rem;
    }

    .name {
        font-family: Verdana;
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1rem;
        z-index: 1;
        font-size: 3.3rem;
        width: auto;
        text-transform: uppercase;
        position: absolute;
        left: 2vw;
    }
}

@media (min-width:1000px) and (max-width:1499px) {
    .menu {
        color: #ffffff;
        z-index: 1;
        grid-row: 1/2;
        grid-column: 1/2;
        width: auto;
        position: absolute;
        right: 2vw;
        font-size: 1.4vw;
        margin-top: 0.5vw;
    }
}

@media (max-width:999px) {
    .menu {
        color: #ffffff;
        z-index: 1;
        grid-row: 1/2;
        grid-column: 1/2;
        width: 100vw;
        margin-left: auto;
        margin-right: auto;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        display: flex;
        font-size: 2.5vw;
        padding-top: 1vw;
    }
}

@media (min-width:1000px) and (max-width:1499px) {
    .name {
        font-family: Verdana;
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1vw;
        z-index: 1;
        font-size: 3.5vw;
        width: auto;
        text-transform: uppercase;
        position: absolute;
        left: 2vw;
    }
}

@media (max-width:999px) {
    .name {
        font-family: Verdana;
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1vw;
        z-index: 1;
        font-size: 7vw;
        width: auto;
        text-transform: uppercase;
        margin-left: auto;
        margin-right: auto;
        display: flex;
    }
}

@media (min-width:1500px) {
    .menu a {
        color: #ffffff;
        font-family: Verdana;
        font-size: 1.5rem;
        text-decoration: none;
        padding-left: 0rem;
        padding-right: 0rem;
    }
}

@media (min-width:1000px) and (max-width:1499px) {
    .menu a {
        color: #ffffff;
        font-family: Verdana;
        font-size: 1.6vw;
        text-decoration: none;
        padding-left: 0rem;
        padding-right: 0rem;
    }
}

@media (max-width:999px) {
    .menu a {
        color: #ffffff;
        font-family: Verdana;
        font-size: 3vw;
        text-decoration: none;
        padding-left: 1vw;
        padding-right: 1vw;
    }
}

@media (min-width:1000px) {
    .top-bg {
        height: 6rem;
        background-color: #a9a9a9;
        grid-row: 1/2;
        grid-column: 1/2;
        z-index: 1;
        opacity: 0.4;
        display: flex;
        align-items: center;
        align-content: stretch;
    }
}

@media (max-width:999px) {
    .top-bg {
        height: 18vw;
        background-color: #a9a9a9;
        grid-row: 1/2;
        grid-column: 1/2;
        z-index: 1;
        opacity: 0.4;
        display: flex;
        align-items: center;
        align-content: stretch;
    }
}

@media (min-width:1000px) {
    .menu-container {
        display: flex;
        flex-direction: row;
        grid-row: 1/2;
        grid-column: 1/2;
        z-index: 1;
        height: 4rem;
        flex-wrap: wrap;
        width: 100vw;
        align-items: center;
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

@media (max-width:999px) {
    .menu-container {
        display: flex;
        grid-row: 1/2;
        grid-column: 1/2;
        z-index: 1;
        height: 17vw;
        flex-wrap: wrap;
        width: 100vw;
        padding-top: 1vw;
        padding-bottom: 0vw;
        flex-direction: column;
    }
}

.news {
    background-color: #F6B502;
    height: auto;
    margin: 0px;
    width: 90vw;
    display: flex;
    z-index: 1;
    flex-direction: column;
    padding: 2rem 5vw;
}

.news h1 {
    color: #F2F2F2;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: Verdana;
    margin-top: 0;
    padding: 0rem 5vw 1rem;
    margin-bottom: 0;
}

.news p {
    font-family: Verdana;
    color: #F2F2F2;
    font-size: 1rem;
    margin-top: 0;
    padding-left: 5vw;
    padding-right: 5vw;
    padding-top: 0;
    padding-bottom: 0rem;
    margin-bottom: 0rem;
}

.news a {
    margin-top: 0.5rem;
    padding-bottom: 0.5rem;
    }

.zitat-text {
    font-family: Verdana;
    width: 40rem;
    margin: 0rem auto;
    line-height: 150%;
    font-style: italic;
    padding: 1rem;
}

div .zitat {
    display: flex;
    flex-direction: row;
    width: 40rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
}

.zitat {
    display: flex;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 40rem;
}

.text {
    margin-top: 0.5rem;
    margin-left: 4rem;
    margin-right: auto;
    max-width: 40rem;
    font-style: italic;
    line-height: 150%;
    grid-row: 1/2;
    grid-column: 1/2;
}

@media (max-width: 585px) {
    .text {
        margin-top: 0.5rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 25rem;
        font-style: italic;
        line-height: 150%;
        grid-row: 1/2;
        grid-column: 1/2;
    }
}

.text-grid {
    display: grid;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 40rem;
    grid-template-columns: minmax(auto,40rem);
    grid-template-rows: auto;
}

/* Lightbox Gallery Start */
.lightbox {
    display: flex;
    justify-content: center;
}

@media (min-width: 1000px) {
    .lightbox-target p {
        display: block;
        flex-direction: column;
        text-align: center;
        align-self: center;
        color: #FFFFFF;
        font-size: 1rem;
        position: fixed;
        bottom: 0;
    }
}

@media (max-width: 999px) {
    @media (max-width: 999px) {
        .lightbox-target p {
            display: block;
            flex-direction: column;
            text-align: center;
            align-self: center;
            color: #FFFFFF;
            font-size: 1rem;
            position: relative;
            top: 65vw;
        }
    }
}

/* Styles the thumbnail */
@media (min-width:700px) {
    a.lightbox img {
        margin: 0 0 1.5rem 0;
        padding: 0 0 0 0;
        z-index: 0;
        width: 30vw;
        height: 18.56vw;
    }
}

@media (max-width:699px) {
    a.lightbox img {
        margin: 0 0 1.5rem 0;
        padding: 0 0 0 0;
        z-index: 0;
        width: 95vw;
        height: 59vw;
    }
}

/* Styles the lightbox, removes it from sight and adds the fade-in transition */
.lightbox-target {
    display: flex;
    flex-direction: column;
    grid-column: 1 / span 3;
    grid-row: 3;
    z-index: 3;
    position: fixed;
    top: -100%;
    width: 100%;
    background: rgba(0,0,0,.9);
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
    overflow: hidden;
}

/* Styles the lightbox image, centers it vertically and horizontally, adds the zoom-in transition and makes it responsive using a combination of margin and absolute positioning */
@media (max-width:999px) {
    @media (max-width:999px) {
        .lightbox-target img {
            z-index: 3;
            margin: 1rem auto;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            max-height: 20rem;
            max-width: 0%;
            height: 58.8vw;
            box-shadow: 0px 0px 8px rgba(0,0,0,.3);
            box-sizing: border-box;
            -webkit-transition: .5s ease-in-out;
            -moz-transition: .5s ease-in-out;
            -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
            width: 95vw;
        }
    }
}

@media (min-width: 1000px) {
    @media (min-width: 1000px) {
        .lightbox-target img {
            z-index: 3;
            margin: 1rem auto;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            max-height: 0%;
            max-width: 0%;
            height: 80vh;
            box-shadow: 0px 0px 8px rgba(0,0,0,.3);
            box-sizing: border-box;
            -webkit-transition: .5s ease-in-out;
            -moz-transition: .5s ease-in-out;
            -o-transition: .5s ease-in-out;
            transition: .5s ease-in-out;
            width: auto;
        }
    }
}

/* Styles the close link, adds the slide down transition */
a.lightbox-close {
    z-index: 3;
    display: block;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    background: white;
    color: black;
    text-decoration: none;
    position: absolute;
    top: -80px;
    right: 25px;
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
}

/* Provides part of the "X" to eliminate an image from the close link */
a.lightbox-close:before {
    z-index: 3;
    content: "";
    display: block;
    height: 30px;
    width: 1px;
    background: black;
    position: absolute;
    left: 26px;
    top: 10px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Provides part of the "X" to eliminate an image from the close link */
a.lightbox-close:after {
    z-index: 3;
    content: "";
    display: block;
    height: 30px;
    width: 1px;
    background: black;
    position: absolute;
    left: 26px;
    top: 10px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* Uses the :target pseudo-class to perform the animations upon clicking the .lightbox-target anchor */
.lightbox-target:target {
    z-index: 3;
    opacity: 1;
    top: 0;
    bottom: 0;
}

.lightbox-target:target img {
    z-index: 3;
    max-height: 100%;
    max-width: 100%;
}

.lightbox-target:target a.lightbox-close {
    z-index: 3;
    top: 0px;
}

/* Lightbox Gallery End */
@media (min-width:1000px) {
    .gallery-block {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}

@media (max-width:999px) {
    .gallery-block {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.margin-top-2rem {
    margin-top: 2rem;
}

#text1-full:target {
    display: flex;
    width: 38rem;
    padding: 0 0 0 0;
    margin-top: -20rem;
    line-height: 1.5;
    justify-self: center;
    font-style: italic;
    flex-direction: column;
    background-color: #FFFFFF;
    margin-left: 4rem;
}

#text1-en-full:target {
    display: flex;
    width: 38rem;
    padding: 0 0 0 0;
    margin-top: -17rem;
    line-height: 1.5;
    justify-self: center;
    font-style: italic;
    flex-direction: column;
    background-color: #FFFFFF;
    margin-left: 4rem;
}

#text2-full:target {
    display: flex;
    width: 38rem;
    padding: 0 0 0 0;
    margin-top: -21.5rem;
    line-height: 1.5;
    justify-self: center;
    font-style: italic;
    flex-direction: column;
    background-color: #FFFFFF;
    margin-left: 4rem;
}

#text2-en-full:target {
    display: flex;
    width: 38rem;
    padding: 0 0 0 0;
    margin-top: -18.5rem;
    line-height: 1.5;
    justify-self: center;
    font-style: italic;
    flex-direction: column;
    background-color: #FFFFFF;
    margin-left: 4rem;
    max-width: 90vw;
}

#text3-full:target {
    display: flex;
    width: 38rem;
    padding: 0 0 0 0;
    margin-top: -14rem;
    line-height: 1.5;
    justify-self: center;
    font-style: italic;
    flex-direction: column;
    background-color: #FFFFFF;
    margin-left: 4rem;
}

#text3-en-full:target {
    display: flex;
    width: 38rem;
    padding: 0 0 0 0;
    margin-top: -12.5rem;
    line-height: 1.5;
    justify-self: center;
    font-style: italic;
    flex-direction: column;
    background-color: #FFFFFF;
    margin-left: 4rem;
    max-width: 90vw;
}

.full-text {
    display: none;
    width: 40rem;
    padding: 0 0 0 0;
    margin-top: -2rem;
    line-height: 1.5;
    justify-self: center;
    font-style: italic;
    flex-direction: column;
    background-color: #FFFFFF;
}

.zitat img {
    width: 2rem;
    height: 1.6rem;
    padding-left: 1rem;
}

.text-grid img {
    width: 2rem;
    height: 1.6rem;
    padding-left: 1rem;
    grid-row: 1/2;
    grid-column: 1/2;
}

/* Sepzielle Smartphone Formatierung */
@media (max-width: 453px) {
    .header-container {
        display: grid;
        height: 68vh;
        grid-template-columns: 100vw;
        grid-template-rows: 100vh;
        width: 100vw;
        z-index: 0;
    }

    .slideshow-preload-image {
        grid-column: 1;
        grid-row: 1;
        background-image: url('../front_img1.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 68vh;
        animation: slide-preload-image 18s steps(1,end) 1;
        animation-delay: 0s;
    }

    .slideshow-image1 {
        grid-column: 1;
        grid-row: 1;
        background-image: url('../front_img1.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 68vh;
        animation: slide-image1 18s steps(1,end) infinite;
        animation-delay: 0s;
    }

    .slideshow-image2 {
        grid-column: 1;
        grid-row: 1;
        background-image: url('../front_img2.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 68vh;
        animation: slide-image2 18s steps(1,end) infinite;
        animation-delay: 6s;
        opacity: 0;
    }

    .slideshow-image3 {
        grid-column: 1;
        grid-row: 1;
        background-image: url('../front_img3.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        width: 100%;
        height: 68vh;
        animation: slide-image3 18s steps(1,end) infinite;
        animation-delay: 12s;
        opacity: 0;
    }

    .top-bg {
        height: 21vw;
        background-color: #a9a9a9;
        grid-row: 1/2;
        grid-column: 1/2;
        z-index: 1;
        opacity: 0.4;
        display: flex;
        align-items: center;
        align-content: stretch;
    }

    .name {
        font-family: Verdana;
        color: #ffffff;
        font-weight: bold;
        letter-spacing: 1vw;
        z-index: 1;
        font-size: 9.5vw;
        width: auto;
        text-transform: uppercase;
        margin-left: auto;
        margin-right: auto;
        display: flex;
    }

    .menu a {
        color: #ffffff;
        font-family: Verdana;
        font-size: 4vw;
        text-decoration-style: none;
        padding-left: 1vw;
        padding-right: 1vw;
    }

    .zitat {
        width: 30rem;
    }

    .text-grid {
        width: 30rem;
    }

    .text {
        padding-left: 2rem;
    }

    .zitat-text {
        font-family: Verdana;
        width: 25rem;
        margin: 0rem auto;
        line-height: 150%;
        font-style: italic;
        padding: 1rem;
    }

    #text1-full:target {
        display: flex;
        width: 25rem;
        padding: 0 0 0 0;
        margin-top: -23rem;
        line-height: 1.5;
        font-style: italic;
        flex-direction: column;
        background-color: #FFFFFF;
        margin-left: 2rem;
    }

    #text2-full:target {
        display: flex;
        width: 25rem;
        padding: 0 0 0 0;
        margin-top: -26rem;
        line-height: 1.5;
        font-style: italic;
        flex-direction: column;
        background-color: #FFFFFF;
        margin-left: 2rem;
    }

    #text3-full:target {
        display: flex;
        width: 25rem;
        padding: 0 0 0 0;
        margin-top: -17rem;
        line-height: 1.5;
        font-style: italic;
        flex-direction: column;
        background-color: #FFFFFF;
        margin-left: 2rem;
    }

    #text1-en-full:target {
        display: flex;
        width: 25rem;
        padding: 0 0 0 0;
        margin-top: -21rem;
        line-height: 1.5;
        font-style: italic;
        flex-direction: column;
        background-color: #FFFFFF;
        margin-left: 2rem;
    }

    #text2-en-full:target {
        display: flex;
        width: 25rem;
        padding: 0 0 0 0;
        margin-top: -23rem;
        line-height: 1.5;
        font-style: italic;
        flex-direction: column;
        background-color: #FFFFFF;
        margin-left: 2rem;
    }

    #text3-en-full:target {
        display: flex;
        width: 25rem;
        padding: 0 0 0 0;
        margin-top: -15rem;
        line-height: 1.5;
        font-style: italic;
        flex-direction: column;
        background-color: #FFFFFF;
        margin-left: 2rem;
    }
}

@media (min-width: 454px) and (max-width: 600px) {
    .zitat {
        width: 30rem;
    }

    .text-grid {
        width: 30rem;
    }

    .text {
        padding-left: 2rem;
    }

    .zitat-text {
        font-family: Verdana;
        width: 25rem;
        margin: 0rem auto;
        line-height: 150%;
        font-style: italic;
        padding: 1rem;
    }

    #text1-full:target {
        display: flex;
        width: 25rem;
        padding: 0 0 0 0;
        margin-top: -24.5rem;
        line-height: 1.5;
        font-style: italic;
        flex-direction: column;
        background-color: #FFFFFF;
        margin-left: 2rem;
    }

    #text2-full:target {
        display: flex;
        width: 25rem;
        padding: 0 0 0 0;
        margin-top: -32rem;
        line-height: 1.5;
        font-style: italic;
        flex-direction: column;
        background-color: #FFFFFF;
        margin-left: 2rem;
    }

    #text3-full:target {
        display: flex;
        width: 25rem;
        padding: 0 0 0 0;
        margin-top: -20rem;
        line-height: 1.5;
        font-style: italic;
        flex-direction: column;
        background-color: #FFFFFF;
        margin-left: 2rem;
    }

    #text1-en-full:target {
        display: flex;
        width: 25rem;
        padding: 0 0 0 0;
        margin-top: -22.5rem;
        line-height: 1.5;
        font-style: italic;
        flex-direction: column;
        background-color: #FFFFFF;
        margin-left: 2rem;
    }

    #text2-en-full:target {
        display: flex;
        width: 25rem;
        padding: 0 0 0 0;
        margin-top: -27rem;
        line-height: 1.5;
        font-style: italic;
        flex-direction: column;
        background-color: #FFFFFF;
        margin-left: 2rem;
    }

    #text3-en-full:target {
        display: flex;
        width: 25rem;
        padding: 0 0 0 0;
        margin-top: -18.5rem;
        line-height: 1.5;
        font-style: italic;
        flex-direction: column;
        background-color: #FFFFFF;
        margin-left: 2rem;
    }
}

.zitat {
    width: 30rem;
}

.text a,
.full-text a {
    text-decoration: none;
    color: #2F6674;
    font-family: Verdana;
    font-weight: normal;
    font-size: 1rem;
    display: flex;
}

.full-text span {
    font-size: 0.8rem;
}

@media (min-width:1000px) {
    .exhibition-img {
        width: 45vw;
        height: 30vw;
    }
}

@media (max-width:999px) {
    .exhibition-img {
        width: 90vw;
        height: 60vw;
    }
}

@media (min-width:1000px) {
    .center-horizontally {
        margin-left: auto;
        margin-right: auto;
        width: 92vw;
        display: flex;
        flex-direction: row;
    }
}

@media (max-width:999px) {
    .center-horizontally {
        margin-left: auto;
        margin-right: auto;
        width: 75vw;
        display: flex;
        flex-direction: column;
        max-width: 82rem;
        align-items: center;
    }
}

.spacer {
    width: 2rem;
    min-width: 2rem;
    height: 4vw;
}

.quote-marks {
    width: 2rem;
    height: 1.6rem;
    padding-left: 1rem;
}

@media (min-width:700px) {
    .biography {
        background-color: #f2f2f2;
        display: grid;
        grid-auto-rows: auto;
        grid-template-columns: 5rem 30rem 30rem;
        grid-row-gap: 1rem;
        padding-top: 2rem;
        padding-left: 5vw;
        margin-top: 4rem;
        width: 95vw;
        padding-bottom: 2rem;
    }
}

@media (max-width:699px) {
    .biography {
        background-color: #f2f2f2;
        display: grid;
        grid-auto-rows: auto;
        grid-template-columns: 100vw;
        grid-row-gap: 1rem;
        padding-top: 2rem;
        padding-left: 5vw;
        margin-top: 4rem;
        width: 95vw;
        padding-bottom: 2rem;
    }
}

@media (max-width:699px) {
    .biography h1 {
        font-size: 2rem;
        grid-column: 1 /4;
        grid-row: 1;
        margin: 0;
        padding: 0 0 1.5rem 0;
        width: 70vw;
    }
}

@media (min-width:700px) {
    .biography h1 {
        font-size: 2rem;
        grid-row: 1;
        margin: 0;
        padding: 0 0 1.5rem 0;
        width: 70vw;
        grid-column: 1 /span3;
    }
}

@media (max-width:699px) {
    .bio-text {
        grid-column: 1;
        width: 90vw;
        padding-bottom: 1rem;
    }
}

.year {
    grid-column: 1;
}

@media (max-width:699px) {
    .year {
        grid-column: 1;
        width: 90vw;
        font-weight: bold;
    }
}

@media (min-width:700px) and (max-width:1099px) {
    .portrait {
        grid-column: 1;
        width: 30rem;
        height: 24.83rem;
        grid-row: 6;
        margin-top: 1rem;
        margin-bottom: 1rem;
        position: relative;
        margin-left: 5rem;
    }
}

@media (max-width:699px) {
    .portrait {
        grid-column: 1;
        width: 80vw;
        grid-row: 6;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

@media (min-width:1100px) {
    .portrait {
        grid-column: 3;
        grid-row: 2 / span 8;
        width: 40vw;
        height: 33.12vw;
        margin-top: 6rem;
        margin-left: 2rem;
    }
}

@media (max-width:699px) {
    .catalogs {
        padding-left: 5vw;
        width: 95vw;
        grid-auto-rows: auto;
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: 25vw 15vw 40vw;
        grid-row-gap: 1rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 4rem;
    }
}

@media (min-width:700px) and (max-width:1199px) {
    .catalogs {
        grid-auto-rows: auto;
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: 30vw 20vw 40vw;
        grid-row-gap: 2rem;
        margin-bottom: 4rem;
        grid-column-gap: 1rem;
        margin-left: auto;
        margin-right: auto;
        width: 95vw;
        padding-top: 2rem;
        padding-bottom: 2rem;
        padding-left: 5vw;
    }
}

@media (min-width:1200px) {
    .catalogs {
        grid-auto-rows: auto;
        display: grid;
        grid-template-rows: auto;
        grid-template-columns: 30vw 13vw 25vw;
        grid-row-gap: 2rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 4rem;
        grid-column-gap: 1rem;
        margin-left: auto;
        margin-right: auto;
        width: 73vw;
    }
}

@media (max-width:699px) {
    .catalog-img {
        width: 70vw;
        height: auto;
    }
}

@media (min-width:700px) {
    .catalog-property {
        text-align: right;
        padding-right: 0rem;
    }
}

@media (max-width:699px) {
    .catalog-property {
        text-align: right;
        grid-column: 1;
    }
}

@media (max-width:699px) {
    .catalog-description {
        padding-left: 2vw;
        grid-column: 2/span 3;
    }
}

.contact {
    width: 100vw;
    background-color: #F2F2F2;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width:700px) {
    .catalogs h1 {
        grid-row: 1;
        grid-column: 1 / span 3;
    }
}

@media (max-width:699px) {
    .catalogs h1 {
        grid-row: 1;
        grid-column: 1 / span 3;
    }
}

.contact a {
    text-decoration: none;
    color: #333333;
}

@media (max-width:699px) {
    iframe, .karte {
        width: 70vw;
        margin-top: 2rem;
        height: 50vw;
    }
}

@media (min-width:700px) {
    iframe, .karte {
        width: 55vw;
        margin-top: 2rem;
        height: 30vw;
    }
}

@media (min-width:700px) {
    .atelier {
        width: 55vw;
        height: auto;
        margin-top: 1rem;
    }
}

@media (max-width:699px) {
    .atelier {
        width: 70vw;
        height: auto;
        margin-top: 1rem;
    }
}

.contact-block {
    display: flex;
    flex-direction: column;
}

.bottom-menu {
    margin-top: 3rem;
    font-size: 1rem;
    display: flex;
}

@media (min-width:700px) {
    .contact-center-block {
        display: flex;
        flex-direction: column;
        width: 55vw;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width:699px) {
    .contact-center-block {
        display: flex;
        flex-direction: column;
        width: 70vw;
        margin-left: auto;
        margin-right: auto;
    }
}

.bottom-menu span {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width:1500px) {
    #language-spacing {
        padding-left: 2rem;
    }
}

@media (max-width:1499px) {
    #language-spacing {
        padding-left: 2vw;
    }
}

.end {
    margin-top: 2vw;
    height: 1rem;
    width: 50vw;
}

@media (max-width:699px) {
    .catalog-image {
        grid-column: 1/span3;
        width: 90vw;
    }
}

@media (min-width:700px) {
    .catalog-image {
        grid-column: 1;
        width: 30vw;
    }
}

@media (max-width:699px) {
    html {
        font-size: 14px;
    }
}

@media (max-width:399px) {
    html {
        font-size: 12px;
    }
}

@media 400px {
    html {
        font-size: 14px;
    }
}

@media (min-width:700px) and (max-width:999px) {
    html {
        font-size: 15px;
    }
}

@media (min-width:1000px) {
    html {
        font-size: 16px;
    }
}

@media (min-width:700px) {
    .catalog-img {
        width: 30vw;
        height: auto;
    }
}

.news a {
    color: #F2F2F2;
    text-decoration: underline;
    padding-left: 5vw;
    padding-right: 5vw;
    font-family: Verdana;
    font-size: 1rem;
}
}
}