@charset "utf-8";

/* Standard */
:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 1em/1.3em Arial, "Segoe UI", Calibri, sans-serif;
    color: #000;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 600px;
    border: solid 1px #000;
    background: #fff;
    padding: 1rem;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.375em;
    line-height: 1.1em;
}

h2 {
    color: #5090CC;
    font-size: 1.9em;
    line-height: 1.3;
    padding-bottom: 0.7rem;
    font-weight: 400;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

.qrcode {
    position: absolute;
    right: 0;
    top: 0;
}

footer {
    position: absolute;
    right: 1rem;
    bottom: 0;
    width: 351px;
}

.small {
    font-size: 0.813em;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:599px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p {
        text-align: left;
    }

    p :is(span, a) {
        display: inline-block;
    }
    .qrcode,.logo{
        position: static;
        display: flex;
        justify-content: center;
        margin: 0 0 0.7rem;
    }

    footer{
        position: static;
        width: 100%;
    }
}