@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 0.813em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem;
}

p {
    padding-bottom: 0.625rem;
}

p strong {
    font-weight: 900;
}

h1 {
    margin: 0 0 0.125rem;
    font-size: 1.25em;
    line-height: 1.2em;
    font-weight: 900;
}

h1 span {
    font-size: 0.74em;
    font-weight: 600;
}

h2 {
    font-size: 1em;
    line-height: 1.5em;
    margin-bottom: 0;
    font-weight: 900;
}

h2 span {
    font-weight: 400;
}

a {
    color: #0563C1;
    text-decoration: underline;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    padding: 0rem 0rem 0.625rem;
    list-style-image: url();
    list-style: none;
}

li {
    padding-left: 1rem;
}

ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.25em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -1rem;
}

li ul {
    padding-bottom: 0;
}

li ul li {
    padding-left: 1.3rem;
}

li ul li:before {
    content: "\2218";
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    padding: 0rem 0rem 1rem;
}

article {
    padding: 0;
}

footer {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

@media only screen and (max-width:750px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }

    p {
        text-align: left;
    }

    br {
        display: none;
    }

    footer {
        display: block;
    }

    footer a img {
        padding-bottom: 1rem;
    }
}