@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #FFF;
    font: 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') no-repeat top left ;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
p a.big{
    font-size: 1.3em;
    line-height: 1.3em;
}
h1 {
    margin: 2rem 0 0.5rem;
    font-size: 1.692em;
    line-height: 1.1;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
.logo{
    position: absolute;
    top: 2rem;
    right: 2rem;
}
.pss{
        position: absolute;
    top: 25rem;
    left: 2rem;
}
article{
    padding: 2rem 2rem 0;
}
footer{
    width: 300px;
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
footer figure{
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
footer p{
    text-align: center;
}
p.bg span{
    display: inline-block;
    padding: 0.2rem;
    background: #015AAA;
    margin-bottom: 0.1rem;
    font-weight: bold;
}
p.small{
    font-size: 0.8em;
    line-height: 1.3em;
}
footer p:last-of-type{
    color: #015AAA;
}
.qr{
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1rem 0;
}
.qr p{
    padding-bottom: 0;
}
@media only screen and (max-width:899px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 0;
        background: #31A4D5;
    }
    p :is(a,span){
        display: inline-block;
    }
    .logo{
        display: flex;
        justify-content: center;
        margin: 1rem;
        position: relative;
        z-index: 999;
    }
    .pss, .logo, footer{
        position: static;
    }
    br{
        display: none;
    }
    :is(article >p:last-of-type, .qr p) br{
        display: block;
    }
    footer{
        background: #FFF;
        width: 100%;
        padding: 1rem;
    }
    h1{
        margin-top: 0;
    }
}
@media only screen and (max-width: 480px) {
    article{
        padding: 1rem;
    }
}