@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.12em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.7rem;
}
p span.mr {
    margin-right: 1rem;
}
p a.color {
    color: #00639D;
}
p a.ins {
    text-decoration: underline;
}
h1 {
    margin: 0 0 1rem;
    font-size: 2.692em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.8em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    padding: 1rem 3rem;
}
article {
    background: #B4D8AE;
}
article, footer {
    padding: 1rem 3rem 0;
}
footer {
    display: flex;
    justify-content: start;
    gap: 0 1rem;
    position: relative;
}
footer:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 97%;
    background: #000;
    right: 53.8%;
    top: 4%;
}
@media only screen and (max-width:799px) {
    body {
        font-size: 1em;
        line-height: 1.3em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    header {
        padding: 1rem;
        display: flex;
        justify-content: center;
    }
    article, footer {
        padding: 1rem 2rem 0;
    }
    h1 {
        font-size: 1.7em;
    }
}
@media only screen and (max-width:720px) {
    footer {
        flex-direction: column;
    }
    footer:after {
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    article, footer {
        padding: 1rem 1rem 0;
    }
}