@charset "utf-8";
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/ubuntu-v20-latin-500.eot');
    src: local(''),
        url('../fonts/ubuntu-v20-latin-500.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ubuntu-v20-latin-500.woff2') format('woff2'),
        url('../fonts/ubuntu-v20-latin-500.woff') format('woff'),
        url('../fonts/ubuntu-v20-latin-500.ttf') format('truetype'),
        url('../fonts/ubuntu-v20-latin-500.svg#Ubuntu') format('svg');
}
@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/ubuntu-v20-latin-700.eot');
    src: local(''),
        url('../fonts/ubuntu-v20-latin-700.eot?#iefix') format('embedded-opentype'),
        url('../fonts/ubuntu-v20-latin-700.woff2') format('woff2'),
        url('../fonts/ubuntu-v20-latin-700.woff') format('woff'),
        url('../fonts/ubuntu-v20-latin-700.ttf') format('truetype'),
        url('../fonts/ubuntu-v20-latin-700.svg#Ubuntu') format('svg');
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 500 1.125em/1.3em 'Ubuntu', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 545px;
    margin: 1rem auto;
    border: 2px solid #80C241;
    background: #fff;
    overflow: hidden;
}
:is(h1, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
h1 {
    margin: 0 0 2.5rem;
    font-size: 1.7em;
    line-height: 1.1;
    color: #80C241;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
article, footer {
    padding: 1.5rem 2rem;
}
.qr {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.qr p {
    font-size: 1.313em;
    line-height: 1.3;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex {
    display: flex;
    justify-content: center;
    flex-flow: row-reverse;
    align-items: center;
    gap: 1rem 1.5rem;
}
.social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}
figure {
    margin: 0;
}
footer p {
    color: #80C241;
}
@media only screen and (max-width:544px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p a, span {
        display: inline-block;
    }
    article br{
        display: none;
    }
    article, footer {
        padding: 1rem;
    }
    .qr p{
        flex: 1;
    }
    footer{
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}