@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 1.313em/1.4 Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 495px;
    margin: 1rem auto;
    border: 3px solid #225C82;
    background: #fff;
    overflow: hidden;
    padding: 0.5rem 0.8rem 0;
    text-align: left;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #225C82;
    text-decoration: none;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0.35rem 0 0.75rem;
    font-size: 1.15em;
    line-height: 1.3;
    padding-left: 1.25rem;
    color: #225C82;
}
h1:before {
    content: "\2022";
    font-size: 1.2em;
    line-height: 1;
    float: left;
    margin: 2px 0 0 -1.25rem;
    font-family: Arial, sans-serif;
}
h1 span {
    display: block;
}
img {
    max-width: 100%;
    height: auto;
}
footer {
    position: absolute;
    bottom: 0.2rem;
    right: 0.5rem;
}
@media only screen and (max-width:494px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0.8rem;
    }
    br {
        display: none;
    }
    p a, span {
        display: inline-block;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
        padding-top: 0.5rem;
    }
}