@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
}

#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
    padding: 50px 40px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

.farbe {
    color: #0075B3;
}

p {
    margin: 0 0 16px;
}
span{
    white-space: nowrap
}
h1 + p,
.links p,
footer p {
    font-size: 15px;
}

.links p i {
    color: #0075B3;
    margin: 0 10px 0 16px;
    width: 30px;
    font-size: 25px;
}

.links p {
    margin: 0 0 35px;
    display: flex;
    align-items: center;
}

footer p i {
    color: #0075B3;
    margin: 0 5px 0 0;
    width: 20px;
    font-size: 18px;
}

h1 {
    font-size: 26px;
    width: 70%;
    line-height: 1.1;
}

h1 + p {
    width: 30%;
}

h2 {
    font-size: 18px;
    color: #0075B3;
    ;
    margin: 0 0 16px;
}

ul {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
}

ul li {
    padding: 0 0 10px 18px
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: 5px;
    height: 5px;
    background: #000;
    margin-left: -18px;
    top: 7px;
}

header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0 0 20px;
}

.flex {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 30px;
    margin: 0;
}

main {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px
}

.links,
footer {
    width: 33%;
}

.rechts,
article {
    width: 67%;
}

footer > p:first-of-type {
    margin: 0 10px 20px;
}

.line_height {
    line-height: 1.6;
}

footer p {
    margin: 0 0 30px
}

.info {
    padding: 16px 10px;
}

.logo {
    position: absolute;
    bottom: 50px;
    right: 40px;
}

@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 24px;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }

    .info {
        padding: 16px 0;
    }

    footer > p:first-of-type {
        margin: 0 0 20px;
    }
    main{
        margin: 0
    }
}

@media only screen and (max-width: 799px) {

    header,
    .flex,
    main {
        flex-direction: column;
        gap: 16px;
    }

    h1,
    h1 + p,
    .links,
    .rechts,
    article,
    footer {
        width: 100%
    }

    h1,
    h1 + p,
    article > h2:last-of-type,
    footer p {
        text-align: center;
    }

    .links p i {
        margin: 0 10px 0 0;
    }

    .links p {
        margin: 0 0 16px;
        justify-content: center
    }

    footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    footer p {
        margin: 0 0 20px
    }

    .none {
        display: none
    }

    .logo {
        position: static;
    }
}
