* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 801px;
    background: #fff;
    border: 1px solid #cbcbcb;
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 18px;
    text-align: left;
    margin: 12px auto;
    padding: 0px;
    overflow: hidden;
    position: relative;
}

#header {
    margin-bottom: 16px;
    margin-top: -52px;
}

#anzeige_div {
    padding: 10px 17px 0 37px;
}

#footer {
    margin: 16px 0 0;
}

:is(.right, .left) {
    display: flex;
    flex-direction: column;
    margin: 20px 0;
}

.right {
    justify-content: flex-end;
    align-items: flex-end;
}

.left {
    justify-content: flex-start;
}

hr {
    border: none;
    height: 40px;
    width: 60%;
    display: block;
}

.right hr {
    background: #fdc607;
}

.left hr {
    background: #009118;
}

h1 {
    font-size: 29px;
    margin: 16px 0 6px;
    line-height: 28px;
    position: relative;
}

h3 {
    font-size: 13px;
    margin: 16px 0 8px;
    line-height: 1.1;
}

p {
    margin-bottom: 16px;
    text-align: justify;
}

p:last-child {
    margin-bottom: 0px;
}

a {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0px 0px 14px 14px;
    list-style: none;
}

ul li {
    padding-left: 20px;
    background: url("iconli.png") no-repeat left 6px;
}

.center {
    text-align: center;
}

h1 span{
    position: relative;
    z-index: 999;
}

h1:before {
    height: 15px;
    display: block;
    content: "";
    background: #fdc607;
    width: 100%;
    bottom: -2px;
    left: 0;
    position: absolute;
    z-index: 0;
}

@media screen and (max-width: 800px) {
    #wrapper {
        width: 100%;
        border: none;
        margin: 0px;
    }

    #anzeige_div {
        padding: 20px 10px;
    }

    #header {
        margin-top: 0;
    }

    #anzeige_div br {
        display: none;
    }

    p {
        text-align: left;
    }

    #footer br {
        display: block;
    }
}

@media screen and (max-width: 480px) {
    hr {
        width: 100% !important;
    }
}