@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.125em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 690px;
    margin: 1rem auto;
    border: solid 6px #B0568E;
    background-color: #fff;
    overflow: hidden;
    padding: 0.25rem;
}
p {
    padding-bottom: 0.375rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.813em;
    line-height: 1.3em;
    color: #B0568E;
}
h1 span {
    font-size: 0.75em;
    line-height: 1.3em;
    display: block;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
main {
    padding: 0.25rem 1rem;
    border: 2px solid #005990;
}
header p, h1 {
    text-align: center;
}
footer {
    padding: 0.25rem 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}
footer p {
    padding-bottom: 0.625rem;
    font-size: 1.063em;
    line-height: 1.3em;
}
footer p:last-of-type {
    padding-bottom: 0;
}
@media only screen and (max-width: 689px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
    }
    main {
        border: none;
    }
    :is(header, article) br {
        display: none;
    }
    p span {
        display: inline-block;
    }
}
@media only screen and (max-width: 520px) {
    body {
        font-size: 1em;
    }
    footer {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 1rem;
    }
    footer p {
        text-align: center;
    }
}