@charset "utf-8";
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/open-sans-v34-latin-300.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-300.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-300.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-300.woff') format('woff'), url('../fonts/open-sans-v34-latin-300.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-300.svg#OpenSans') format('svg');
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/open-sans-v34-latin-700.eot');
    src: local(''), url('../fonts/open-sans-v34-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v34-latin-700.woff') format('woff'), url('../fonts/open-sans-v34-latin-700.ttf') format('truetype'), url('../fonts/open-sans-v34-latin-700.svg#OpenSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 300 1em/1.4em 'Open Sans', Arial, sans-serif;
}
strong, h1, h2 {
    font-weight: 700;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 600px;
    border: solid 1px #000;
    background: #fff;
}
ul {
    padding: 0 0 1.75rem;
    list-style: none;
}
p {
    padding-bottom: 0.5rem;
}
li {
    display: flex;
    justify-content: flex-start;
    gap: 0.5rem;
    padding-bottom: 0.35rem;
}
li span {
    width: 26px;
}
li span:last-of-type {
    width: 93%;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0.7rem 0 1.25rem;
    font-size: 1.4em;
    line-height: 1.3em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    padding-bottom: 0.7rem;
}
header {
    padding: 1.5rem;
}
article {
    padding: 0 3rem 1.75rem;
}
article p:last-of-type {
    font-size: 1.1em;
    line-height: 1.3em;
}
a.red, h1 {
    color: #8D2F45;
}
footer {
    padding: 1.5rem 3rem 1rem;
    background: #8D2F45;
}
footer p {
    font-size: 0.95em;
    line-height: 1.3;
    color: #fff;
}
footer p:last-of-type {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}
@media only screen and (max-width:599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    article br {
        display: none;
    }
    header {
        padding: 1rem;
        display: flex;
        justify-content: center;
    }
    article {
        padding: 0 1rem 0.5rem;
    }
    footer {
        padding: 1rem 1rem 0.5rem;
    }
    footer p {
        text-align: center;
    }
    footer p:last-of-type {
        justify-content: center;
    }
}
@media only screen and (max-width: 360px) {
    footer p:last-of-type {
        gap: 1rem;
    }
}