@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 680px;
    border: solid 1px #000;
    background: #fff;
    padding: 0.7rem 1rem 0;
}
p {
    padding-bottom: 0.7rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.592em;
    line-height: 1.6;
    color: #F68A42;
}
h1 small {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding: 0 0 0.5rem 40px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    margin: 0 0 0 -20px;
    float: left;
}
figure {
    display: flex;
    justify-content: end;
    margin-right: 1.5rem;
}
.banner {
    margin: 1rem 0;
}
.center, h1 {
    text-align: center;
}
footer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: end;
    line-height: 1.6;
    width: 90%;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:679px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    footer {
        width: 100%;
    }
    article br {
        display: none;
    }
    .banner, figure {
        display: flex;
        justify-content: center;
    }
    p :is(a, span) {
        display: inline-block;
    }
}