@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400..700;1,400..700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 700 1.25em/1.3 "Cabin", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 625px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #00407C url('./bg.jpg') no-repeat top right;
    overflow: hidden;
    padding: 0.75rem 1.25rem 1rem;
}
h1 {
    margin: 1.5rem 0;
    font-size: 1.8em;
    line-height: 1.2;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.4em;
    line-height: 1.3;
    font-style: italic;
    margin-bottom: 0;
}
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.qr {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    padding-bottom: 1.25rem;
}
.qr p {
    padding-bottom: 0.5rem;
}
footer p {
    font-size: 1.188em;
    line-height: 1.3em;
}
@media only screen and (max-width: 624px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        background: #00407C;
    }
    br {
        display: none;
    }
    h1 {
        font-size: 1.5em;
    }
}
@media only screen and (max-width: 410px) {
    body {
        font-size: 1.125em;
    }
    header, .qr {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}