@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 1.125em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 560px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #80B5DC;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 1rem;
}
h1 {
    font-size: 1.25em;
    line-height: 1.3;
    color: #8CB936;
    text-align: center;
}
h1 span {
    font-size: 1rem;
    color: #000;
    font-weight: normal;
}
h1 + p {
    text-align: center;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: #80B5DC;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header p {
    background: #80B5DC;
    padding: 1rem;
    font-size: 1.3125em;
    line-height: 1.3;
    color: #fff;
    text-align: center;
}
article {
    padding: 1rem 1.5rem 0;
}
footer {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
@media only screen and (max-width:559px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1 {
        font-size: 1.5em;
    }
    .hide_m {
        display: none;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}