@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 475px;
    margin: 1rem auto;
    border: solid 2px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 0.8rem;
    text-align: justify;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.25em;
    line-height: 1.3em;
    text-align: center;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: underline;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    gap: 1rem;
}
article>p:first-of-type {
    letter-spacing: -0.1px;
}
@media only screen and (max-width:474px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    br {
        display: none;
    }
    p :is(a, span) {
        display: inline-block;
    }
    article>p:first-of-type {
        word-spacing: 0;
    }
    p {
        text-align: left;
    }
}