@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1.25em;
    line-height: 1.2;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 590px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 5px #0AB38D;
    background-color: #fff;
    overflow: hidden;
    padding: 2rem 1rem;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.5rem;
    font-size: 1.375em;
    line-height: 1.1;
    text-align: center;
    color: #0AB38D;
}
h1 span {
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: 400;
    color: #000;
    display: block;
}
.big {
    font-size: 1.25em;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    padding: 0 0 2rem;
    display: flex;
    justify-content: center;
}
footer {
    padding-top: 1rem;
}
@media only screen and (max-width: 589px) {
    body {
        font-size: 1em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    p a {
        display: inline-block;
    }
    footer p {
        text-align: center;
    }
    .hide_m {
        display: none;
    }
}