@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1.0625em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 600px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #000 url('../images/bg.jpg') top left no-repeat;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 2rem 0.75rem;
    font-size: 1.5em;
    line-height: 1.3;
}
h2 {
    font-size: 1.875em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
h1:before {
    content: "•";
    float: left;
    color: #009EAB;
    font-size: 0.85em;
    margin: 1px 0 0 -0.75rem;
}
article {
    padding: 0 2rem;
}
footer {
    padding: 0 2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.qrc {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 0.625rem 0.75rem;
    background: #009EAB;
    gap: 0.25rem;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.logo p {
    padding-bottom: 0;
}
@media only screen and (max-width:599px) {
    body {
        font-size: 1em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h1 {
        font-size: 1.375em;
    }
    article {
        padding: 0 1rem;
    }
    footer {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
        padding: 0 1rem 1rem;
    }
}