@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.25em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 525px;
    margin: 1rem auto;
    border: 4px solid #5A90CC;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
a.ins {
    text-decoration: underline;
    color: #006FB5;
}
span{
    display: inline-block;
}
h1 {
    margin: 0.5rem 0 1.5rem;
    font-size: 1.5em;
    line-height: 1.1;
    text-align: center;
}
h1 small {
    display: inline-block;
    font-size: 0.813em;
}
h1 span {
    font-weight: 400;
    display: block;
    font-size: 1.25rem;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    padding: 0.5rem 1rem 0.1rem;
    display: flex;
    justify-content: center;
}
article {
    padding: 0 1.5rem;
    position: relative;
}
article p:first-of-type {
    text-align: justify;
    hyphens: auto;
    word-spacing: 5px;
}
article p {
    padding-bottom: 0.75rem;
}
article figure {
    margin: 0;
    position: absolute;
    right: 1.5rem;
    bottom: 0.5rem;
}
article p:last-of-type {
    font-size: 0.95em;
    line-height: 1.3em;
}
footer {
    padding: 0.5rem 1rem;
    background: #5A90CC;
}
footer p {
    font-size: 1.125em;
    line-height: 1.2;
    text-align: center;
    color: #fff;
}
footer p:last-of-type {
    font-size: 1.3em;
    line-height: 1.2;
}
@media only screen and (max-width: 524px) {
    body {
        font-size: 1em;
        line-height: 1.3;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: center;
    }
    span {
        display: inline-block;
    }
    article{
        padding: 0 1rem;
    }
    article p:first-of-type {
        text-align: center;
        word-spacing: 0;
    }
    article figure {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    footer p {
        font-size: 1.25em !important;
    }
}