@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital@0;1&family=Roboto:wght@400;700;900&display=swap');

:root {
    font-size: 16px;
}

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

html {
    min-height: 100%;
}

body {
    color: #231F20;
    font-family: 'Roboto', sans-serif;
    font-size: 0.875em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 740px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #231F20;
    background-color: #E6E6E7;
    overflow: hidden;
    padding: 1.6rem 1.6rem 0.5rem;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 1rem 0rem 0rem;
    font-size: 3.4em;
    line-height: 1em;
    font-weight: 900;
    position: relative;
    text-transform: uppercase;
}

h1 span {
    display: inline-block;
    padding-bottom: 0.2rem;
}

h1 em {
    display: block;
    font-size: 0.75em;
    line-height: 1.2em;
    margin-top: -0.1rem;
}

hr {
    border: none;
    background: #231F20;
    height: 3px;
    width: 660px;
    margin: 0rem 0rem 0.5rem;
    text-align: center;
}

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

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: 1.2rem;
}

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

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

header {
    padding: 0rem 0rem 0rem;
    margin-bottom: -7.3rem;
}

article {
    padding: 2.8rem 0rem 0rem;
}

article>p:nth-of-type(1) {
    font-family: Times, "Times New Roman", serif;
    font-style: italic;
    font-size: 1.55em;
    line-height: 1.2em;
    padding-bottom: 1.3rem;
}

article>p:nth-of-type(2) {
    font-size: 1.2em;
    line-height: 1.2em;
}

article section {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

article section:first-of-type aside {
    width: 313px;
}

article section:first-of-type aside:last-of-type {
    width: 346px;
}

article section:last-of-type {
    border: 2px solid #FFF;
    border-radius: 10px;
    padding: 1rem 1rem 0rem 1.5rem;
    margin: 1rem 0rem 1rem -2rem;
}

article section:last-of-type p {
    text-align: center;
    width: 122px;
}

footer {
    padding: 3rem 0rem 0rem;
}

footer p {
    float: left;
    font-size: 0.875em;
    line-height: 1.35em;
    width: 330px;
}

footer img {
    position: absolute;
    bottom: 0;
    right: 1.5rem;
}

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

    header {
        margin-bottom: -1.2rem;
    }

    h1+p {
        font-size: 1.412em;
        line-height: 1.2em;
    }

    h1 {
        font-size: 2em;
        line-height: 1.1em;
        margin-top: 0.5rem;
    }

    article {
        padding-top: 0;
    }

    article section {
        display: block;
    }

    article section:first-of-type aside, article section:last-of-type p, article section:first-of-type aside:last-of-type {
        width: 100%;
    }

    article section:last-of-type>p img {
        display: inline;
    }

    article section:last-of-type>p br {
        display: block;
    }

    article section:last-of-type {
        margin: 1rem 0rem;
    }

    footer {
        padding-top: 0.5rem;
    }

    footer img {
        position: static;
    }

    article br {
        display: none;
    }
}