@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Baskervville:ital@0;1&family=Michroma&display=swap');
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #161616;
    font-family: 'Baskervville', serif;
    font-size: 0.75em;
    line-height: 1.75em;
}

#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0rem;
}

p {
    padding-bottom: 0.75rem;
}

h1 {
    margin: 1rem 0rem 3rem;
    font-size: 1.4em;
    line-height: 1.1em;
    font-family: 'Michroma', sans-serif;
    color: #621970;
    font-weight: normal;
    position: relative;
}

h1::before {
    content: "";
    width: 2.75rem;
    height: 1px;
    background-color: #AFB1B3;
    position: absolute;
    bottom: -2rem;
    left: 0;
}

h2 {
    font-size: 1.375em;
    line-height: 1.3em;
    margin-bottom: 0.75rem;
    font-family: 'Michroma', sans-serif;
    color: #621970;
    font-weight: normal;
}
h3 {
    font-size: 1.3em;
    line-height: 1.3em;
    margin-bottom: 0.25rem;
}
a {
    color: #161616;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    padding: 0rem 0rem 1.5rem 0rem;
    list-style-image: url();
    list-style: none;
}

li {
    padding-left: 0.8rem;
}

ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.000em;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -0.8rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    padding: 0rem 0rem 1.5rem;
}

article {
    padding: 0rem 5.5rem 1rem 3.5rem;
}
article aside {
    font-size: 1.35em;
    line-height: 1.5em;
}
footer {
    padding: 2rem 3rem 1rem;
    background-color: #621970;
    text-align: right;
    color: #fff;
    line-height: 1.75em;
}
footer a {
    color: #fff;
}
footer p img {
    position: relative;
    top: 4px;
}
@media only screen and (max-width:749px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 0;
    }
    i br {
        display: none;
    }
    article {
        padding: 0 1rem;
    }
    h1 {
        margin: 0 0 2rem;
    }
    h1::before {
        bottom: -1rem;
    }
    footer {
        padding: 1rem 1rem 0.5rem;
    }
}