:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Merriweather', Arial, serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    color: #231f20;
}

#wrapper {
    margin: 1rem auto;
    max-width: 542px;
    background: #fff;
    border: solid 2px #07896b;
    padding: 16px 16px 10px;
}

footer p {
    font-size: 18px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: #07896b;
    margin: 0;
}

strong {
    font-weight: 900;
}

:is(h1, h2) {
    line-height: 1.2;
}

h1 {
    font-size: 16px;
    line-height: 1.4;
    margin: 0 0 10px;
    font-weight: 400;
}

h1 strong {
    color: #07896b;
    font-size: 18px;
}

h2 {
    font-size: 19px;
    color: #07896b;
}

p {
    margin-bottom: 10px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #07896b;
    text-decoration: none;
}

img {
    max-width: 100%;
}

@media screen and (max-width: 542px) {
    #wrapper {
        border: none;
        margin: 0;
    }

    :is(h1, p) {
        hyphens: auto;
        text-wrap: pretty;
    }

    span {
        white-space: nowrap;
    }

    br:not(footer br) {
        display: none;
    }
}