:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v34-latin-regular.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-regular.woff') format('woff'), url('../fonts/open-sans-v34-latin-regular.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-regular.svg#OpenSans') format('svg');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
}

#wrapper {
    max-width: 1030px;
    margin: 16px auto;
    border: 1px solid #00578f;
    padding: 13px;
    background: #fff;
    position: relative;
}

header {
    position: relative;
}

article {
    padding: 12px 0 0;
}

footer {
    padding: 12px 0 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

strong {
    font-weight: 700;
}

h1 {
    padding: 8px 16px;
    font-weight: 700;
    font-size: 16px;
    line-height: 23px;
    background: #00aeef;
    text-transform: uppercase;
    display: inline-block;
    color: #fff;
}

h1 span {
    text-transform: none;
}

h2 {
    padding: 8px 17px;
    font-size: 14px;
    line-height: 17px;
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 6px;
    color: #fff;
    background: #00578f;
    border-radius: 3px 0 0 0;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.text {
    position: absolute;
    left: 60px;
    top: 360px;
    width: 258px;
}

footer p.gelb {
    background: #f9ca18;
}

footer p {
    display: inline-block;
    padding: 8px 16px;
    background: #231f20;
}

footer a {
    color: #fff !important;
}

article p {
    font-size: 13px;
    line-height: 19px;
}

@media all and (max-width: 1029px) {
    #wrapper {
        margin: 0;
        padding: 16px;
        border: none;
    }

    .text {
        left: 6%;
        top: 50%;
        font-size: 1.25vw;
        line-height: 1.4;
        width: 25%;
    }
}

@media all and (max-width: 767px) {
    h2 {
        position: static;
        margin-top: 12px;
    }

    .text {
        position: static;
        font-size: 13px;
        width: auto;
        margin-bottom: 20px;
    }
}