@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #003A3B url('../images/bg.jpg') top left no-repeat;
    overflow: hidden;
    padding: 3rem 4rem 2rem;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 2.5em;
    line-height: 1.3;
}
h1 span {
    font-size: 1.125rem;
    line-height: 1.3;
}
h1, h3 {
    font-family: "Time New Roman", serif;
}
h2 {
    font-size: 4.5em;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
h3 {
    font-size: 3em;
    line-height: 1.3em;
    margin-bottom: 1rem;
}
h4 {
    font-size: 2.375em;
    line-height: 1.3em;
}
h2, h4 {
    color: #3BB488;
}
ul {
    font-size: 1.25em;
    line-height: 1.3;
    padding: 1rem;
    list-style: none;
    font-weight: bold;
    margin: 3rem 0;
}
li {
    padding: 0.25rem 0 0.25rem 3rem;
}
li:before {
    content: url('../images/icon.jpg');
    float: left;
    margin: -1px 0 0 -3rem;
}
.qrc {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 2rem;
}
.qrc p {
    padding: 0;
}
.qrc a {
    font-size: 1.125em;
    margin-top: 0.25rem;
    display: inline-block;
}
article {
    padding: 0;
}
footer p {
    padding-bottom: 0.25rem;
    color: #003B39;
}
footer {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-end;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: none;
        padding: 2rem;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    h2 {
        font-size: 3.5em;
    }
    ul {
        padding: 1rem;
        background: #35B789;
        margin: 1rem 0;
    }
    .qrc {
        flex-direction: column;
    }
    .hide_m {
        display: none;
    }
    footer p {
        padding: 0.5rem;
        text-align: center;
        background: #fff;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    h1 {
        font-size: 1.5em;
    }
    h2 {
        font-size: 2em;
    }
    h3, h4 {
        font-size: 1.75em;
    }
    footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}