@charset "utf-8";
@font-face {
    font-family: 'Signika';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/signika-v20-latin-regular.eot');
    src: local(''),
        url('../fonts/signika-v20-latin-regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/signika-v20-latin-regular.woff2') format('woff2'),
        url('../fonts/signika-v20-latin-regular.woff') format('woff'),
        url('../fonts/signika-v20-latin-regular.ttf') format('truetype'),
        url('../fonts/signika-v20-latin-regular.svg#Signika') format('svg');
}
@font-face {
    font-family: 'Signika';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/signika-v20-latin-600.eot');
    src: local(''),
        url('../fonts/signika-v20-latin-600.eot?#iefix') format('embedded-opentype'),
        url('../fonts/signika-v20-latin-600.woff2') format('woff2'),
        url('../fonts/signika-v20-latin-600.woff') format('woff'),
        url('../fonts/signika-v20-latin-600.ttf') format('truetype'),
        url('../fonts/signika-v20-latin-600.svg#Signika') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #4B4C4D;
    font: 400 1em/1.5em 'Signika', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: 1px solid #4B4C4D;
    background: #fff;
    overflow: hidden;
}
:is(h1, h3, strong) {
    font-weight: 600;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
.color, a.color, h3 {
    color: #E41C3B;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem 1rem;
    padding-left: 1rem;
    font-size: 1.125em;
    line-height: 1.3;
    position: relative;
}
h1:before {
    content: "\25A0";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
    color: #E41C3B;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    font-weight: 400;
}
h3 {
    font-size: 1.5em;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}
h3 span {
    display: block;
    color: #4B4C4D;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
.hl {
    color: #E41C3B;
    font-size: 1.25em;
    line-height: 1.1;
    font-weight: 600;
    margin-right: 0.35rem;
}
.contact {
    font-size: 0.75em;
    line-height: 1.5;
    margin-top: 1rem;
}
header img {
    border-bottom: 2px solid #E41C3B;
}
article {
    padding: 2rem 2rem 1rem;
}
footer {
    padding: 0 2rem 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 0 1rem;
}
figure {
    margin: 0 0 0.25rem;
}
@media only screen and (max-width:499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        hyphens: auto;
    }
    p a, span {
        display: inline-block;
    }
    br {
        display: none;
    }
    article {
        padding: 1rem 1rem 0;
    }
    footer {
        padding: 0 1rem 1rem;
        flex-direction: column;
        align-items: center;
    }
}