@charset "utf-8";

:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
}

html {
    min-height: 100%;
}

body {
    font: 1em/1.3em "Segoe UI", Calibri, sans-serif;
    color: #000;
}

#wrapper {
    overflow: hidden;
    position: relative;
    max-width: 900px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
}

h1 {
    margin: 0 0 1rem;
    font-size: 1em;
    line-height: 1.3em;
    font-weight: normal;
    padding-left: 0.875rem;
}

h1:before {
    content: "\2022";
    display: inline-block;
    font-size: 1.2em;
    position: relative;
    float: left;
    margin-top: -1px;
    margin-left: -0.875rem;
    color: #ED028C;
}

h2 {
    text-transform: uppercase;
    font-size: 1.8em;
    line-height: 1.2;
    padding-bottom: 1rem;
    font-weight: normal;
    font-style: italic;
}

h2 ins {
    font-weight: bold;
}

header {
    position: relative;
}

.qrcode {
    position: absolute;
    right: 11%;
    height: 11%;
    bottom: 10%;
    width: 11%;
    transform: rotate(-48deg);
}

.link {
    position: absolute;
    right: 2%;
    height: 3%;
    bottom: 9%;
    width: 19%;
    transform: rotate(-48deg);
}

article {
    padding: 0.3rem 6rem;
}

footer {
    padding: 0 4rem 2rem;
    display: flex;
    justify-content: end;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

@media only screen and (max-width:899px) {
    #wrapper {
        border: none;
    }

    article {
        padding: 0.3rem 1rem;
    }

    footer {
        padding: 1rem 1rem;
    }
    h2{
      font-size: 1.6em;
    }
}