@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #231F20;
    font: 1.2em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 517px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #A1D6EE;
    overflow: hidden;
    padding: 1rem 1rem 0.5rem;
}
p.color, h1{
    color: #393256;
}
p {
    padding-bottom: 0.3rem;
}
h1 {
    margin: 0 0 0.3rem;
    font-size: 1.4em;
    line-height: 1.1;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #393256;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
footer{
    position: absolute;
    bottom: 0.5rem;
    right: 1rem;
}
 p :is(a,span){
        display: inline-block;
    }
@media only screen and (max-width: 516px) {
    body{
        font-size: 1em;
        line-height: 1.3em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    footer{
        position: static;
        display: flex;
        justify-content: center;
        margin: 1rem 0;
    }
    .hide_m{
        display: none;
    }
}