@charset "utf-8";
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.eot');
    src: local(''),
        url('../fonts/poppins-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/poppins-v20-latin-regular.woff2') format('woff2'),
        url('../fonts/poppins-v20-latin-regular.woff') format('woff'),
        url('../fonts/poppins-v20-latin-regular.ttf') format('truetype'),
        url('../fonts/poppins-v20-latin-regular.svg#Poppins') format('svg');
}
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.eot');
    src: local(''),
        url('../fonts/poppins-v20-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/poppins-v20-latin-700.woff2') format('woff2'),
        url('../fonts/poppins-v20-latin-700.woff') format('woff'),
        url('../fonts/poppins-v20-latin-700.ttf') format('truetype'),
        url('../fonts/poppins-v20-latin-700.svg#Poppins') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    text-align: center;
    color: #1A110D;
    font: 700 1.2em/1.3em 'Poppins', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 550px;
    margin: 1rem auto;
    border: solid 3px #D32727;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
hr {
    border: none;
    background: #1A110D;
    height: 3px;
    width: 100%;
    text-align: center;
    margin: 0 auto 0.7rem;
}
p.fw400 {
    font-weight: 400;
}
p {
    padding-bottom: 1rem;
    font-size: 1.1em;
    line-height: 1.3em;
}
p.small {
    font-size: 0.91em;
    padding-bottom: 0;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.5em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.6em;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #D32727;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #1A110D;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
.flex {
    display: flex;
    justify-content: center;
    gap: 0 1rem;
    margin-bottom: 1rem;
}
article {
    padding: 0 2rem;
}
@media only screen and (max-width: 549px) {
    body {
        font-size: 1em;
        line-height: 1.3em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p :is(a, span) {
        display: inline-block;
    }
}