@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #200E00;
    font: 1.2em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0 1rem;
}
p {
    padding-bottom: 1rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.592em;
    line-height: 1.1;
    text-align: center;
    letter-spacing: 3px;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #200E00;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    margin: 0 -1rem 1rem;
}
footer {
    display: flex;
    justify-content: space-between;
}
footer p {
    text-align: left;
    font-size: 0.85em;
    line-height: 1.2em;
}
p span.big {
    font-size: 1.2em;
    line-height: 1.3em;
}
@media only screen and (max-width: 499px) {
    body {
        font-size: 1em;
        line-height: 1.3em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    p {
        text-align: left;
    }
    h1 {
        letter-spacing: 0;
    }
    footer {
        flex-direction: column;
        text-align: center;
    }
    footer p {
        text-align: center;
    }
}