@charset "utf-8";
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #231F20;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.875em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #B3CA5C;
    background-color: #fff;
    overflow: hidden;
    padding: 0.75rem;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 1rem;
    font-size: 1.5em;
    line-height: 1.1em;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}

a {
    color: #231F20;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style-image: url();
    list-style: none;
}

li {
    padding-left: 1rem;
}

ul li:before {
    content: "";
    width: 5px;
    height: 5px;
    background-color: #231F20;
    display: inline-block;
    position: relative;
    float: left;
    top: 6px;
    margin-left: -1rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    padding: 0rem 0rem 1rem;
    text-align: right;
}

article {
    padding: 0rem 0rem 2rem;
    position: relative;
}

article aside {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

article aside p {
    width: 70%;
}

article aside img {
    margin-top: 0.25rem;
}

footer {
    padding: 0rem 0rem 0rem;
}

@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        font-size: 0.875em;
        line-height: 1.3em;
    }
    p {
        text-align: left;
    }
    article aside {
        display: block;
    }
    article aside p {
        width: 100%;
    }
    article aside img {
        margin-bottom: 1rem;
    }
    h1 {
        line-height: 1.2em;
    }
}