@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: 530px;
    margin: 1rem auto;
    border: solid 1px #372783;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 1rem -1rem;
    font-size: 1.692em;
    line-height: 1.1;
    color: #FFF;
    padding: 0.5rem 1rem;
    background: #372783;
}
h1 span{
    font-size: 0.6em;
    line-height: 1.3;
    display: block;
    font-weight: normal;
}
h1 span,h2{
    font-weight: normal;
}
h2{
    font-size: 1.3em;
    line-height: 1.3em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
article{
    padding: 1rem 1rem 0;
    position: relative;
}
.logo{
    position: absolute;
    top: 0.5rem;
    right: 1rem;
}
footer{
    padding: 0 1rem;
}
@media only screen and (max-width:529px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a,span){
        display: inline-block;
    }
    .logo{
        position: static;
        display: flex;  
        justify-content: center;
    }
    br{
        display: none;
    }
}