:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    color: #000;
    line-height: 1.25rem;
    font-size: 13px;
    font-weight: 400;
}

#wrapper {
    position: relative;
    max-width: 750px;
    margin: 1rem auto;
    border: 1px solid #cbcbcb;
    overflow: hidden;
    padding: 3rem 5rem;
    background-color: #fff;
}

header{
    margin-bottom: 20px;
}

:is(strong, h1, h2) {
    font-weight: 700;
}

h1 {
    margin: 10px 0;
    font-size: 17px;
    line-height: 24px;
    text-align: center;
}

h1 :is(small, span) {
    font-size: 1rem;
}

h1 span {
    display: block;
}

h2 {
    font-size: 16px;
    line-height: 21px;
}

h2 span {
    font-weight: normal;
    color: #000;
}

p {
    margin: 0 0 13px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    white-space: nowrap;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 21px 33px;
    list-style: none;
}

ul li {
    padding-left: 12px;
}

ul li:before {
    content: "-";
    float: left;
    font-family: Arial, sans-serif;
    font-size: 19px;
    text-indent: -23px;
    position: relative;
    top: -2px;
}


.link {
    color: #0000ff !important;
    text-decoration: underline !important;
}

@media all and (max-width:749px) {
    #wrapper {
        margin: 0 auto;
        border: none;
        padding: 1rem;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    br:not(footer br) {
        display: none;
    }

    p span {
        white-space: nowrap;
    }

    .text {
        width: calc(100% - 264px);
    }
}

@media all and (max-width:575px) {
    header {
        position: static;
        display: flex;
        justify-content: center;
    }

    .text {
        width: 100%;
    }
}