: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: 23px;
    color: #231f20;
}

#wrapper {
    margin: 1rem auto;
    max-width: 535px;
    background: #fff;
    border: solid thin #000;
}

header {
    padding: 16px 15px 00;
}

article {
    padding: 6px 15px 0;
}

.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: 30px;
    margin: 0 0 8px;
}

h1 span {
    font-size: 80%;
}

h2 {
    font-size: 19px;
}

p {
    margin-bottom: 6px;
    text-align: justify;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #231f20;
    text-decoration: none;
}

img {
    max-width: 100%;
}

footer {
    padding: 2px 15px 16px;
}

@media screen and (max-width: 534px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, h2, p) {
        hyphens: auto;
        text-wrap: pretty;
    }

    p{
        text-align: left;
    }

    :is(p a, span) {
        white-space: nowrap;
    }

    br:not(br.mobile-block) {
        display: none;
    }
}