@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 Verdana, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 4px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1.25rem 0.25rem;
}
p {
    padding-bottom: 0.625rem;
}
h1 {
    margin: 0rem 0rem 0.5rem;
    font-size: 0.98em;
    line-height: 1.3em;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0.5rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
.font {
    font-size: 0.93em;
    line-height: 1.3em;    
}
footer {
    position: absolute;
    right: 1rem;
    bottom: 0.5rem;
}
@media only screen and (max-width: 699px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p span {
        display: inline-block;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 699px) {
    #wrapper {
        padding: 1rem;
    }
}