@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Signika:wght@300;400;500;600;700&display=swap');

/* Standard */

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #495355;
    font-family: Verdana, sans-serif;
    font-size: 0.688em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff url('bg.png') no-repeat bottom left;
    overflow: hidden;
    padding: 2rem 2.5rem;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 0rem;
    font-size: 3.75em;
    font-weight: 600;
    line-height: 1.1em;
    font-family: 'Signika', sans-serif;
}

h1 span,
h2 span,
article p span {
    color: #99C321;
}

h1 small {
    font-size: 75%;
    font-weight: 500;
}

h2 {
    font-size: 1.5em;
    font-weight: 500;
    line-height: 1.3em;
    margin-bottom: 1.25rem;
    font-family: 'Signika', sans-serif;
}

h3 {
    font-family: 'Signika', sans-serif;
    color: #fff;
    background-color: #99C321;
    display: inline-block;
    padding: 0 0.15rem;
    font-size: 1.5em;
    line-height: 1.2em;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

a {
    color: #495355;
    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: 1rem;
}

ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.000em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -1rem;
}

header {
    padding: 0rem 0rem 2rem;
    text-align: right;
}

article {
    padding: 0rem 0rem 16rem;
}

footer {
    padding: 0rem 0rem 1rem 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 96%;
}

footer aside {
    text-align: right;
}

footer aside p span {
    color: #99C321;
}

footer>p:last-of-type {
    width: 50%;
}

footer p:last-of-type {
    padding-bottom: 0;
}

@media only screen and (max-width:729px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        background-image: none;
        background-color: #fff;
    }
    p {
        text-align: left;
    }
    article {
        padding-bottom: 3rem;
    }
    footer {
        display: block;
    }
    footer>p br {
        display: none;
    }
    footer p:last-of-type {
        padding-bottom: 1rem;
    }
    h1 {
        font-size: 2.25em;
    }
    h2,
    h3 {
        font-size: 1.25em;
    }
    footer>p:last-of-type {
        width: 100%;
    }
}