@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #2A2829;
    font: 1.2em/1.5 Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 658px;
    margin: 1rem auto;
    border: solid 2px #2A2829;
    background: #F9F5F3;
    overflow: hidden;
    padding: 0 1rem 1.25rem;
}
#wrapper:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 18px;
    background: #C8C9CC;
}
#wrapper:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 31%;
    height: 18px;
    background: #AB545A;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p a.ins {
    text-decoration: underline;
}
p {
    padding-bottom: 0.5rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2.7em;
    line-height: 1.2;
    color: #E02232;
}
h1, .center {
    text-align: center;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 1rem;
    padding: 1rem;
    background: #FFF;
    margin: 0 -1rem 1rem;
}
.big1 {
    font-size: 1.1em;
    line-height: 1.3em;
}
.big2 {
    font-size: 1.25em;
    line-height: 1.3em;
}
article p:last-of-type {
    padding-top: 2rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
footer {
    position: absolute;
    bottom: 1rem;
    right: 0.5rem;
}
@media only screen and (max-width:657px) {
    body {
        font-size: 1em;
        line-height: 1.3em;
3    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        text-align: left;
    }
    h1 {
        font-size: 1.7em;
        line-height: 1.3;
    }
    h1 small {
        font-size: 0.7em;
    }
    p :is(a,span){
        display: inline-block;
    }
@media only screen and (max-width:535px) {
    article p:last-of-type {
        text-align: center;
        margin-bottom: 1rem;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    br{
        display: none;
    }
}