@charset "utf-8";
@font-face {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/pt-sans-v17-latin-700.eot');
    src: local(''),
        url('../fonts/pt-sans-v17-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/pt-sans-v17-latin-700.woff2') format('woff2'),
        url('../fonts/pt-sans-v17-latin-700.woff') format('woff'),
        url('../fonts/pt-sans-v17-latin-700.ttf') format('truetype'),
        url('../fonts/pt-sans-v17-latin-700.svg#PTSans') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 700 1em/1.3em 'PT Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 550px;
    margin: 1rem auto;
    border: 2px solid #193D7B;
    background: #fff;
    overflow: hidden;
}
:is(h1, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: -1.6rem 0 1rem;
    font-size: 1.4em;
    line-height: 1.2;
    transform: rotate(-7deg);
}
h1 span {
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    background: #F36826;
    color: #fff;
    padding: 0 0.25rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
article {
    padding: 0 1.8rem;
}
footer {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
figure {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}
@media only screen and (max-width:549px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p a, span {
        display: inline-block;
    }
    h1{
        transform: none;
        margin-top: 0.5rem;
    }
    br{
        display: none;
    }
    article{
        padding: 0.5rem 1rem;
    }
    footer{
        padding: 1rem;
        flex-direction: column;
        align-items: center;
    }
}

