@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #6B696B;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

a.blau {
    color: rgb(0, 0, 238);
    text-decoration: underline;
}

a.blau:hover {
    color: ;
}

p {
    margin: 0 0 16px;
}

span {
    white-space: nowrap;
}

.margin {
    margin: 0 0 45px;
}

h1 {
    font-size: 24px;
    width: auto;
}

h2 {
    font-size: 18px;
}

h3 {
    font-size: 19px;
    margin: 19px 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    padding: 0 0 16px 0
}

ul li:before {
    content: "";
    float: left;
    position: relative;
    width: 5px;
    height: 1px;
    background: #000;
    margin: 0 10px 0 0;
    top: 11px;
}

.title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.logo {
    border-radius: 8px;
    padding: 0 8px;
    border: 1px solid #D4D4D4;
}

main {
    border: 1px solid #D4D4D4;
}

section {
    border-bottom: 1px solid #D4D4D4;
    padding: 16px;
}

@media only screen and (max-width: 899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 650px) {
    .title {
        flex-direction: column;
        align-items: center;
    }
        
    h1 {
        font-size: 20px
    }

    h1,
    footer {
        text-align: center;
    }
}
