:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    max-width: 680px;
    background: #fff url(background.jpg) no-repeat left bottom;
    border: 3px solid #62508a;
}

header {
    padding: 16px 15px 4px;
}

article {
    padding: 0 15px;
}

.text-center{
    text-align: center;
}

.margin-bottom{
    margin-bottom: 0;
}

:is(h1, h2, strong){
    font-weight: 700;
}

:is(h1, h2) {
    line-height: 1.2;
}

h1 {
    font-size: 33px;
    margin: 0 0 6px;
}

h1 span {
    font-size: 80%;
}

h2 {
    font-size: 16px;
}

p {
    margin-bottom: 6px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 8px 24px;
}

ul li {
    list-style: none;
    text-indent: -15px;
}

ul li:before {
    font-size: 20px;
    margin-right: 15px;
    position: relative;
    top: -1px;
    float: left;
    content: "-";
}

footer {
    padding: 0 15px 7px;
}

@media screen and (max-width: 679px) {
    #wrapper {
        border: none;
        margin: 0;
        background-size: 100% 100%;
    }

    :is(h1, h2, p, ul li) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}