@charset "utf-8";

:root {
    font-size: 16px;
}

/* Standard */
* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #200E00;
    font-family: Tahoma, Helvetica, Arial, sans-serif;
    font-size: 0.938em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 600px;
    margin: 1rem auto;
    border: solid 2px #242021;
    background: #fff;
    overflow: hidden;
    padding: 0;
}

a {
    color: #200E00;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}
p {
    padding-bottom: 0.5rem;
}

h1 {
    margin: 0 0 0.5rem 0;
    padding: 0.75rem 0;
    font-size: 1.5em;
    line-height: 1.1em;
    border-top: 2px solid #200E00;
    border-bottom: 2px solid #200E00;
}

h1 span {
    font-family: 'Georgia', "Times New Roman", sans-serif;
    font-weight: normal;
    font-size: 0.7em;
}

h2 {
    text-align: justify;
    font-size: 1.05em;
    line-height: 1.3em;
    padding: 0 0 2rem;
    font-weight: normal;
}

h3 {
    font-size: 1em;
    line-height: 1.2em;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
}

em {
    font-family: 'Georgia', "Times New Roman", sans-serif;
}

ul {
    padding: 0 0 0.8rem;
    list-style: none;
    float: right;
    width: 408px;
}

li {
    padding-left: 0;
}

li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.1em;
    line-height: 1;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -1rem;
}

header {
    padding: 1.5rem 1rem 2rem;
}

article {
    padding: 0 1rem;
}
article p {
    font-size: 1.063em;
    line-height: 1.3em;
}
article section {
    display: flex;
    justify-content: space-between;
    margin: 0.25rem 0 1rem -1rem;
    padding: 1rem;
    border-top-right-radius: 1rem;
    border-bottom-right-radius: 1rem;
    background: #E7E8E9;
}
aside {
    display: flow-root;
}
article section {
    text-align: center;
    font-size: 0.75em;
    line-height: 1.3;
}

article section aside span {
    display: block;
    height: 70px;
}

article > aside h3 {
    float: left;
    width: 136px;
}

article > aside p {
    float: right;
    width: 425px;
    padding-bottom: 1rem;
}
footer p {
    padding: 0.85rem 1rem 0.75rem 9.5rem;
    background: #E6E7E9;
    font-size: 0.92em;
    line-height: 1.4em;
}

@media only screen and (max-width:599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        font-size: 0.938em;
    }

    ul, article > aside p {
        float: none;
        width: 100%;
    }
    li {
        padding-left: 1rem;
    }
    ul li::before {
        margin-left: -1rem;
    }

    header {
        flex-wrap: wrap;
    }

    article {
        padding-bottom: 0;
    }

    footer p {
        padding: 0.7rem 1rem;
        text-align: center;
    }

    h1 {
        font-size: 1.5em;
    }

    i br {
        display: none;
    }

    h1 br {
        display: initial;
    }

    article section {
        display: block;
        margin: 0.25rem 0 1rem
    }

    article section aside {
        padding-bottom: 1rem;
    }

    article > aside h3 {
        width: auto;
        float: none;
    }

}
@media only screen and (max-width:380px) {
    header {
        flex-direction: column;
        align-items: center;
        padding-bottom: 1rem;
    }
    header img {
        margin-bottom: 0.75rem;
    }
}