@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    text-align: center;
    color: #000;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 520px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p :is(a, span) {
    display: inline-block;
}
p {
    padding-bottom: 0.5rem;
}
p a.color {
    color: #508FCB;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.692em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    padding: 0.5rem 1rem;
    display: flex;
    justify-content: space-between;
    background: #EAEFF8;
    margin-bottom: 0.5rem;
    align-items: center;
}
article, footer {
    padding: 0 1rem;
}
@media only screen and (max-width:519px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    header{
         gap: 0.5rem 1rem;
         flex-direction: column;
    }
    br{
        display: none;
    }
}