@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 400 1em/1.2em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 530px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.375em;
    line-height: 1.1em;
    font-weight: 800;
}
h2 {
    font-size: 1.875em;
    line-height: 1.3em;
    padding: 0.5rem 2rem;
    background: #F2D329;
    color: #2B373D;
}
article {
    padding: 1rem 2rem 0.5rem;
}
footer {
    position: absolute;
    top: 3.425rem;
    right: 0;
    background: #526068;
    border: 1px solid #27343B;
}
footer p {
    padding: 1rem 1rem 6rem;
    color: #fff;
}
@media only screen and (max-width:529px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    article, h2 {
        padding: 1rem;
    }
    footer {
        position: static;
        width: fit-content;
        margin: 0 auto 1rem;
    }
    footer p {
        padding: 1rem;
    }
}
@media only screen and (max-width:480px) {
    body {
        font-size: 1em;
        line-height: 1.3;
    }
}