@charset "utf-8";
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/open-sans-v35-latin-regular.woff2') format('woff2');
}
@font-face {
    font-display: swap;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v35-latin-700.woff2') format('woff2');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 0.938em/1.3em 'Open Sans', Arial, sans-serif;
}
h1,h2,strong {
    font-weight: 700;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 810px;
    border: solid 1px #000;
    background: #fff;
    padding: 1.5rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 1rem 0 0.5rem;
    font-size: 2em;
    line-height: 1.1em;
    color: #c10d00;
}
h2 {
    color: #c10d00;
    font-size: 1.25em;
    line-height: 1.3;
    padding-bottom: 1rem;
}
ul {
    padding: 0 0 1rem 0;
    list-style: none;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin: -1px 0 0 -1rem;
}
li {
    padding: 0 0 4px 20px;
}
li i {
    padding-right: 1.5rem;
    color: #c10d00;
}
aside ul li:before {
    display: none;
}
aside ul li {
    padding-left: 0;
}
figure {
    margin: 1rem -1.5rem;
}
aside {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 390px;
}
footer {
    padding: 1rem 0;
    text-align: right;
}
footer :is(a:link, a:visited, a:active) {
    padding: 10px 20px;
    border: 1px solid #000;
    font-size: 1.188em;
    line-height: 1.3;
}
footer a:hover {
    background: #c10d00;
    color: #fff;
    text-decoration: none;
    border: 1px solid #c10d00;
}
:is(a:link, a:visited, a:active) {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
@media only screen and (max-width:809px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header {
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 480px) {
    #wrapper {
        padding: 1rem;
    }
    aside {
        width: auto;
    }
}
@media only screen and (max-width: 380px) {
    aside {
        flex-direction: column;
    }
}