@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: #fff;
}

#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 530px;
    border: solid 1px #485792;
    background: #485792;
}

p {
    padding-bottom: 1rem;
}

h1 {
    margin: 0rem 0rem 0rem;
    font-size: 1.892em;
    line-height: 1.1em;
    color: #485792;
    text-align: center;
}

h1 small {
    font-size: 0.55em;
    display: block;
    font-weight: 400;
}

h2 {
    font-size: 2.3em;
    line-height: 0.9;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}

ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}

li {
    padding: 0 0 0 16px;
}

ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
}

header {
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: url('../images/bg.jpg') no-repeat bottom;
}

article p {
    text-align: center;
    color: #000;
}

.qrcode {
    display: flex;
    justify-content: center;
    padding-bottom: 0.3rem;
}

article {
    padding: 2rem 2rem 1rem;
    background: #fff;
}

footer {
    padding: 1rem 2rem 0;
}

img {
    max-width: 100%;
    height: auto;
}

@media only screen and (max-width:529px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    p :is(span, a) {
        display: inline-block;
    }

    .hide_m {
        display: none;
    }

    br {
        display: none;
    }

    h2 {
        font-size: 1.6em;
        padding: 0.7rem 0;
        line-height: 1.3;
    }

    header {
        flex-wrap: wrap-reverse;
    }

    header, article, footer {
        padding: 1rem;
    }

}
