@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 582px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0.5rem 0;
    font-size: 2.25em;
    color: #89C53F;
    line-height: 1.2;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.35em;
    line-height: 1.3;
    margin-bottom: 0;
    color: #fff;
}
h2 span {
    font-weight: 400;
}
a {
    color: #89C53F;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
header {
    padding: 1.5rem;
    background: #40464F;
    border-bottom: 3px solid #89C53F;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}
main {
    display: flex;
    padding: 1.5rem 0;
    justify-content: space-between;
    align-items: center;
}
article {
    padding: 0 1.5rem;
    width: 53%;
}
footer {
    padding: 0 1rem;
    width: 47%;
    border-left: 3px solid #89C53F;
}
.qr {
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
}
@media only screen and (max-width:581px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    p {
        text-align: left;
    }
    header {
        padding: 1rem;
    }
    header, main {
        flex-direction: column;
    }
    header h2 {
        width: 100%;
        padding-top: 1rem;
    }
    article {
        padding: 0 1rem;
        width: 100%;
    }
    footer {
        border-left: none;
        width: 100%;
        padding: 0 1rem;
    }
}