@charset "utf-8";
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/source-sans-pro-v21-latin-regular.eot');
    src: local(''), url('../fonts/source-sans-pro-v21-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/source-sans-pro-v21-latin-regular.woff2') format('woff2'),
        url('../fonts/source-sans-pro-v21-latin-regular.woff') format('woff'),
        url('../fonts/source-sans-pro-v21-latin-regular.ttf') format('truetype'),
        url('../fonts/source-sans-pro-v21-latin-regular.svg#SourceSansPro') format('svg');
}
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/source-sans-pro-v21-latin-600.eot');
    src: local(''), url('../fonts/source-sans-pro-v21-latin-600.eot?#iefix') format('embedded-opentype'),
        url('../fonts/source-sans-pro-v21-latin-600.woff2') format('woff2'),
        url('../fonts/source-sans-pro-v21-latin-600.woff') format('woff'),
        url('../fonts/source-sans-pro-v21-latin-600.ttf') format('truetype'),
        url('../fonts/source-sans-pro-v21-latin-600.svg#SourceSansPro') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.3 'Source Sans Pro', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 625px;
    margin: 1rem auto;
    border: solid 2px #000;
    background: #fff;
    overflow: hidden;
    padding: 0.75rem 1rem 1.25rem;
}
#wrapper:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 18px;
    background: #B2B2B2;
}
#wrapper:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 34%;
    height: 18px;
    background: #B6274B;
}
:is(h1, h2, strong) {
    font-weight: 600;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 600;
}
p {
    padding-bottom: 0.5rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0.125rem 0 0.5rem;
    font-size: 1.95em;
    line-height: 1;
    color: #B6274B;
    text-align: center;
}
h1 span{
    display: block;
    color: #000;
    font-size: 1.25rem;
    line-height: 1.3;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 1rem;
    padding-bottom: 1rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
p span {
        display: inline-block;
    }
@media only screen and (max-width:624px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
}
@media only screen and (max-width: 550px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    h1{
        font-size: 1.7em;
    }
}