@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap');
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    color: #231F20;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1em;
    line-height: 1.3em;
}

#wrapper {
    position: relative;
    max-width: 735px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0rem;
}

p {
    padding-bottom: 0.5rem;
    text-align: justify;
}

h1 {
    margin: 0rem 0rem 0.15rem;
    font-size: 2.313em;
    line-height: 1.1em;
    color: #08A4DC;
    text-align: center;
}

h1 span {
    font-size: 0.7em;
}

h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0;
}

h3 {
    color: #08A4DC;
}

a {
    color: #231F20;
    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: 0.75rem;
}

ul li:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.5em;
    position: relative;
    float: left;
    top: -1px;
    margin-left: -0.75rem;
}

ul:first-of-type li:not(:first-of-type) {
    display: inline-block;
}

ul:last-of-type {
    padding-bottom: 0.25rem;
}

.clearfix:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0px;
}

header {
    padding: 0rem 0rem 0rem;
}

article {
    padding: 0rem 1.5rem 0rem 1.25rem;
    margin-top: -2rem;
}

article p:nth-of-type(2) {
    text-align: center;
    padding-bottom: 0;
}

footer {
    padding: 0rem 1.5rem 0.5rem;
    display: flex;
    align-items: center;
}

footer p {
    padding-bottom: 0;
}

footer p {
    line-height: 1.1em;
}

footer a img {
    position: absolute;
    bottom: 0;
    right: 0.25rem;
}

footer aside {
    margin-right: 2.5rem;
}

@media only screen and (max-width:734px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 0;
        font-size: 0.875em;
        line-height: 1.3em;
    }
    p {
        text-align: left;
    }
    article {
        margin-top: 0.5rem;
        padding: 0 1rem;
    }
    footer {
        display: block;
    }
    footer aside {
        margin-bottom: 1rem;
    }
    footer a img {
        position: static;
        margin-top: 1rem;
    }
}