@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.5em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 550px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') no-repeat top left;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
.center{
    text-align: center;
}
p {
    padding-bottom: 1.3rem;
}
h1 {
    margin: -1rem 0 4rem;
    font-size: 1.7em;
    line-height: 1.1;
}
h1 span{
    font-size: 0.6em;
    font-weight: normal;
    display: block;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
ul li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    font-size: 1.3em;
    float: left;
    margin: 0 0 0 -1rem;
}
header p{
    font-size: 0.9em;
    line-height: 1.3em;
}
@media only screen and (max-width: 549px) {
    body{
        font-size: 1.1em;
        line-height: 1.3em;
        text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
         background-size: cover;
    }
    p :is(a,span){
        display: inline-block;
    }
    h1{
        margin-bottom: 1rem;
    }
    .hide_m{
        display: none;
    }
}