@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #6C6D70;
    font: 1em/1.3em 'Segoe UI', Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') no-repeat bottom -6.5rem left;
    overflow: hidden;
    padding: 1rem 1rem 0 4rem;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.7em;
    line-height: 1.1;
    color: #45B749;
}
h1:before {
    content: "•";
    margin: 7px 0 0 -1rem;
    padding-right: 0.5rem;
}
h1 span {
    font-size: 0.7em;
    font-weight: normal;
}
h2 {
    font-size: 1.4em;
    line-height: 1.3;
    font-weight: 400;
    text-align: left;
    font-family: "Segoe UI", Arial, sans-serif;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #6C6D70;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
header figure {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}
header {
    margin-left: 5rem;
}
footer {
    position: relative;
}
footer:before {
    content: "";
    shape-outside: polygon(0 0, 26px 0, 0 208px);
    width: 25px;
    height: 137px;
    float: left;
    opacity: .2;
}
footer p {
    text-align: left;
}
.res {
    display: none;
}
@media only screen and (max-width:799px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        background-image: none;
    }
    p :is(a, span) {
        display: inline-block;
    }
    .res {
        display: block;
        margin: 1rem 0;
    }
    header {
        margin: 0;
    }
    header figure {
        justify-content: center;
    }
    footer p {
        text-align: center;
    }
    footer:before {
        display: none;
    }
}