@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: #EBEBEB;
    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;
}

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

h1 em {
    display: block;
    font-size: 0.9em;
    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: 0.4rem 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;
}

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;
    }

    footer {
        padding-top: 0.5rem;
    }

    footer img {
        position: static;
    }

    footer p {
        width: auto;
    }

    article br {
        display: none;
    }
}