@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
    color: #000;
    font: 1rem/1.5em 'Arial', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 14px #a6a6a6;
    border-radius: 30px;
}

header {
    position: relative;
}

header .mobil {
    display: none;
}

header img.logo {
    position: absolute;
    top: 3rem;
    left: 3rem;
}

header h3 {
    font-weight: normal;
    color: #00507f;
    font-size: 1.6rem;
    line-height: 120%;
    text-transform: uppercase;
    position: absolute;
    bottom: 1rem;
    left: 3rem;
}

article {
    padding: 2rem 3rem 1rem;
}

article p {
    margin: 0 0 1rem;
    hyphens: auto;
}

article h1 {
    text-align: center;
    color: #208acb; 
    line-height: 120%; 
    font-size: 2.7rem;
    margin: 2rem 0;
}

article h2 {
    font-size: 1rem;
    color: #005282;
}

article ul {
    margin: .7rem 0 1.5rem 2rem;
    list-style: none;
    hyphens: auto;
}

article ul li:before {
    content: "\25A0";
    color: #a0d0ea;
    font-size: 12px;
    float: left;        
    margin: -2px 0 0 -15px;
}

:is(a:link,a:visited,a:hover,a:active) {
    color: #a0d0ea;
    text-decoration: none;
    white-space: nowrap;    
}

article span {
    color: #208acb;
    font-size: 1.1rem;
}

article .flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14rem;
    margin-top: 2rem;
}

article .btn {
    color: #fff;
    text-align: center;
    background: #005282;
    padding: .7rem 1rem;
}

article .btn:hover {
    background: #1d73a3; 
}

footer {
    background: #999;
    padding: 1rem 3rem;
}

footer p {
    color: #fff;
    font-size: 15px;
}

@media only screen and (max-width: 49.938rem) {

    #wrapper {
        border: none;
        margin: 0 auto;
        border-radius: 0;
        box-shadow: none;
    }
}

@media only screen and (max-width: 48rem) {

    article {
        padding: 2rem 2rem 2rem;
    }

    footer {
        padding: 1rem 2rem;
    }

    footer p {
        hyphens: auto;
    }
}

@media only screen and (max-width: 43.75rem) {

    article .flex {
        gap: 1rem;
        justify-content: space-between;
    }
}

@media only screen and (max-width: 39.375rem) {

    header img.logo {
        position: relative;
        top: 0;
        left: 0;
        margin: 2rem auto;
    }

    header h3 {
        position: absolute;
        bottom: 3rem;
        left: 2rem;
        font-size: 1.3rem;
    }
}

@media only screen and (max-width: 30rem) {

    article h1 {
        font-size: 1.5rem;
    }
    
    header h3 {
        left: 1rem;
        bottom: 1rem; 
    }

    article {
        padding: 1rem 1rem 2rem;
    }

    article .flex {
        flex-direction: column;
    }

    article .flex p {
        text-align: center;
    }

    article ul {
        margin: .7rem 0 1.5rem 1rem;
    }

    footer {
        padding: 1rem;
    }
}

@media only screen and (max-width: 26.875rem) {

    header .headerbild {
        display: none;
    }

    header .mobil {
        display: block;
        margin: 0 auto;
    }

    header h3 {
        position: relative;
        text-align: center;
        margin: 1rem 1rem 1rem;
        left: 0;
        bottom: 0;
        display: block;
    }

    header h3 br {
        display: none;
    }
}