html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

:root {
    box-sizing: border-box;
    font-size: calc(0.75vw + 0.1em);
}
@media screen and (max-width: 1248px) {
     :root {
         font-size: calc(0.75vw + 0.25em);
     }
}

@media screen and (max-width: 767px) {
    :root {
        font-size: calc(0.75vw + 0.65em);
    }
}

@media screen and (min-width: 3200px) {
    :root {
        font-size: calc(0.6vw + 0.094em);
    }
}






body {
    height: 100vh;
    display: grid;
    grid-template-columns: 30vw 70vw;
    border-top: 3.75rem solid #654653;
    border-bottom: 3.75rem solid #f3e9d8;
    box-sizing: border-box;
}

.links {
    min-height: 0;
}
.links img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    width: 100%;
    height: 100%;
}

.rechts {
    min-height: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rechts h1 {
    color: #654653;
    font-size: 3rem;
    font-family: "franklin-gothic-std", sans-serif;
    font-weight: 600;
    font-style: normal;
    margin: 4rem 0;
}

.rechts img {
    width: 20rem;
}

@media screen and (min-width: 2220px) {
    .rechts h1 {
        font-size: 2.5rem;
    }

    .rechts img {
        width: 16rem;
    }
}

@media screen and (max-width: 1100px) {
    body {
        display: flex;
        flex-direction: column-reverse;
        height: auto;
    }

    .rechts {
        padding: 2rem;
    }

    .rechts h1 {
        font-size: 2.25rem;
    }

    .rechts img {
        width: 15rem;
    }
}