:root {
    --background-color: #fff;
    --text-color: #262626;
    --link-color: #e20074;
    --link-background: rgba(255, 255, 255, 0.7);
}


@media (prefers-color-scheme: dark) {
    :root {
        --background-color: #262626;
        --text-color: #fff;
        --link-color: #fff;
        --link-background: rgba(38, 38, 38, 0.7);
    }
}

@media screen and (-ms-high-contrast: active) {
    :root {
        --background-color: #000;
        --text-color: #fff;
        --link-color: #fff;
        --link-background: #000;
    }
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    min-width: 360px;
    min-height: 480px;
    font-family: TeleNeo, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 1em;
    background-color: var(--background-color);
    color: var(--text-color);
}

#header {
    width: 100%;
    height: 40px;
    color: #fff;
    background: #e20074;
    padding: 12px 0;
    display: flex;
    align-items: center;
}

#brand_logo {
    width: 73px;
    height: 36px;
    margin: 0 12px;
}

#brand_claim {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .035em;
    line-height: 1;
    font-size: 1em;
}

.content {
    padding: 12px;
    width: 90%;
}

.english {
    display: none;
}

.german {
    display: block;
}

a {
    color: var(--link-color);
}

#language_selection {
    padding: 7px;
    right: 100px;
    display: block;
    position: absolute;
    right: 1%;
    background-color: var(--link-background);
}

#section_top {
    position: sticky;
    top: 0;
    z-index: 999;
}