@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #3E3E3C;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 720px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0rem;
}

p {
    padding-bottom: 0.75rem;
}

h1 {
    margin: 0rem 0rem 0.5rem;
    font-size: 2.2em;
    font-weight: normal;
    line-height: 1.1em;
    font-family: 'Fjalla One', sans-serif;
    color: #38B2A7;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 0.95em;
    font-weight: normal;
    line-height: 1.3em;
    margin-bottom: 0;
    font-family: 'Fjalla One', sans-serif;
    color: #38B2A7;
}

a {
    color: #3E3E3C;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

ul {
    padding: 0rem 0rem 0rem 0rem;
    list-style-image: url();
    list-style: none;
}

li {
    padding-left: 1.3rem;
}

ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.000em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -1.3rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    padding: 0rem 0rem 0rem;
}

article {
    padding: 0.5rem 2rem 0rem;
    margin-top: -4.75rem;
}

article aside {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

article aside img {
    margin-right: 0.75rem;
}

article small {
    display: inline-block;
    line-height: 1.3em;
    font-weight: 500;
}

footer {
    padding: 0rem 0rem 0rem;
    position: absolute;
    bottom: 0.6rem;
    right: 1.25rem;
}

footer>img {
    margin-left: 1.25rem;
}

@media only screen and (max-width:719px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 0;
    }
    p {
        text-align: left;
    }
    article {
        margin-top: 0;
        padding: 0.5rem 1rem 0;
    }
    h1 {
        font-size: 2em;
    }
    article aside {
        display: block;
    }
    article aside img {
        margin-bottom: 1rem;
    }
    footer {
        position: static;
        padding: 0.5rem 1rem 1rem;
    }
}