
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #000;
}

#wrapper {
    margin: 1rem auto;
    max-width: 515px;
    background: #fff;
    border: solid thin #259aa3;
}

header {
    padding: 16px 15px 0;
    text-align: right;
}

article {
    padding: 6px 15px;
}

.text-center {
    text-align: center;
}

.margin-bottom {
    margin-bottom: 0;
}

:is(h1, strong) {
    font-weight: 700;
}

h1 {
    font-size: 18px;
    margin: 0 0 6px;
    line-height: 1.2;
}

h1 span {
    color: #259aa3;
}

p {
    margin-bottom: 6px;
    text-align: justify;
    hyphens: auto;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
}

footer {
    padding: 0 15px 16px;
    text-align: center;
}

@media screen and (max-width: 514px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, p) {
        hyphens: auto;
        text-wrap: pretty;
    }

    :is(p a:not(p a.normal), span) {
        white-space: nowrap;
    }

    p a.normal{
        word-break: break-all;
    }

    p{
        text-align: left;
    }

    br:not(br.mobile-block, p.text-center br) {
        display: none;
    }
}