@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 800px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') no-repeat top left;
    overflow: hidden;
    padding: 2rem 2rem 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 2rem;
    font-size: 1.5em;
    line-height: 1.1;
    color: #F68923;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "-";
    font-size: 1.3em;
    float: left;
    margin: -3px 0 0 -1rem;
}
article figure {
    position: absolute;
    top: 1rem;
    right: 1rem;
}
footer {
    background: #DA8752;
    padding: 0.5rem 1rem;
    margin: 0 -2rem;
}
footer p {
    color: #FFF;
    padding-bottom: 0;
    font-size: 0.85em;
    line-height: 1.3em;
}
.mt {
    margin: 1rem 0;
}
@media only screen and (max-width:799px) {
    body{
        font-size: 1em;
        line-height: 1.3em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
        background: #F3F2EC;
    }
    p :is(a, span) {
        display: inline-block;
    }
    article figure {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
    h1, footer p {
        text-align: center;
    }
    footer {
        margin: 0 -1rem -1rem;
    }
    .mt {
        display: flex;
        justify-content: start;
        align-items: flex-start;
    }
    .hide_m{
        display: none;
    }
}