* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "D-DIN";
    background-color: #032426;
    color: #ee7d00;
    min-height: 100svh;
    background: url(../images/background_new.svg);
    background-size: contain;
    background-repeat: repeat;
    background-position: center;
}


h1, .h1 {
    font-size: 1.75rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}

h2, .h2 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}


p,strong {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 1rem;
    line-height: 1.6;
}
p:last-child {
    margin-bottom: 0;
}

strong {
    font-weight: 700;
}


a {
    color: inherit;
    text-decoration: none;
}

a.contact_link {display: inline-block;}

a.contact_link:first-of-type {
    min-width: 50%;
}
a.contact_link:first-of-type:after {
    content: '|';
    margin-left: 0.5rem;
    display: inline-block;
}

@media (max-width: 660px) {
    a.contact_link:first-of-type {
        min-width: 100%;
    }
    a.contact_link:first-of-type:after {
        content: none;
    }
}



a.imprint_link {
    font-size:0.875rem;
}

.content_wrapper {
    min-height: 100svh;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center; 
}

.content {
    display: flex;
    -webkit-box-flex:0;
    -webkit-flex:0 0 100%;
    -ms-flex:0 0 100%;
    flex:0 0 100%;
    max-width:100%;
    position: relative;
}


.content .contact {
    text-align: center;
    padding: 2.5rem;
}

.content.logo_wrapper,
.content.contact_wrapper {
    align-self: flex-end;
}

.content > *{
    margin: 0 auto;
}

.content .logo img {
    width: 25rem;
    max-width: 80svw;
}

@media (min-width: 768px) {
    h1, .h1 {
        font-size: 2.75rem;
    }
    h2, .h2 {
        font-size: 2rem;
    }
    p, strong {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    p:last-child {
        margin-bottom: 0;
    }


    .content .logo,
    .content .contact {
        margin: 0 auto ;
    }

    .content .logo img {width: 45rem;}
}


/*
* Imprint Page
*/
.imprint_page {padding-top: 3rem;}

.imprint_page header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 30;
}
.imprint_page header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.imprint_page header .logo img {width: auto;}

.imprint_page .content .imprint {
    -webkit-box-flex:0;
    -webkit-flex:0 0 100%;
    -ms-flex:0 0 100%;
    flex:0 0 100%;
    max-width:100%;
    padding: 2rem 1rem;
}

@media (min-width: 768px) {
    .imprint_page .content {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 50%;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        margin: 0 auto;
    }
}

