@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: 600px;
    margin: 1rem auto;
    border: solid 2px #015AAA;
    background-color: #015AAA;
    overflow: hidden;
    padding: 0;
    text-align: center;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0.5rem 0 1rem;
    font-size: 1.6em;
    line-height: 1.3;
}
h1 span.ttu{
    text-transform: uppercase;
}
h1 span.fsi{
    font-style: italic;
    font-weight: normal;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #015AAA;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
header{
    padding: 2rem;
    background: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
header p{
    padding-bottom: 0;
    font-size: 1.2em;
    line-height: 1.3em;
}
article{
    padding: 2rem;
    display: flex;
    justify-content: space-between;
}
p.big{
    font-size: 1.3em;
    line-height: 1.3em;
}
.left{
    width: 400px;
}
.right{
    width: 200px;
    margin-top: 2rem;
}
.right figure{
    margin-bottom: 1rem;
}
footer{
    position: absolute;
    bottom: 0;
    right: 0;
}
footer img{
    display: block;
}
.qr{
    margin-left: -5rem;
}
.qr >img{
    margin-bottom: -3rem;
}
.cuttom{
    font-size: 1.7em;
    transform: rotate(-7deg);
    padding: 2rem 0 1rem;
    margin-left: -4rem;
}
@media only screen and (max-width: 599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a,span){
        display: inline-block;
    }
    header{
        padding: 1rem;
        gap: 0 1rem;
    }
}
@media only screen and (max-width: 555px) {
    article{
        flex-direction: column;
    }
    article div{
        width: 100% !important  ;
    }
    .qr,.qr >img{
        margin: 0;
    }
    footer{
        position: static;
        display: flex;
        justify-content: center;
    }
}