body {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #231F20;
    font-weight: 400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

#wrapper {
    margin: 0.75rem auto;
    border: 2px #231F20 solid;
    max-width: 600px;
    position: relative;
    padding: 23px 16px 16px;
    background-color: #FFFFFF;
    overflow: hidden;
}

p {
    margin-bottom: 15px;
    text-align: left;
}

h1 {
    margin: 7px 0 17px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    padding-left: 16px;
}

h1 strong {
    font-size: 18px;
}

h1:before {
    content: "\2022";
    color: #000;
    font-size: 27px;
    line-height: 1em;
    font-family: Arial, Helvetica, sans-serif;
    position: absolute;
    top: 2px;
    left: 0;
}

h2 {
    font-size: 13px;
    margin: 0;
    font-weight: 700;
}

a {
    color: #231F20;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

strong {
    font-weight: 700;
}

header img {
    position: absolute;
    top: 9px;
    right: 20px;
}

footer p {
    margin-bottom: 0;
    text-align: justify;
}

@media only screen and (max-width:599px) {
    body {
        font-size: 14px;
    }

    #wrapper {
        border: none;
        hyphens: auto;
        margin: 0;
    }

    h1 {
        line-height: 1.3;
    }

    h1 span {
        font-size: 14px;
    }

    footer p {
        text-align: left;
    }

    .none {
        display: none;
    }

    header {
        display: flex;
        justify-content: flex-end;
        margin: 0 0 10px;
    }

    header img {
        position: static;
    }

    p {
        text-align: left;
    }
}