@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em 'Calibri', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 500px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #9ECB3A;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1,h2, h3{
    text-align: right;
}
h1 span{
    font-weight: normal;
    font-size: 0.85em;
}
h1,h2 {
    margin: 0 0 1rem;
    font-size: 1.4em;
    line-height: 1.1;
}
h3 {
    font-size: 3em;
    line-height: 1;
    color: #FFF;
}
h3 span{
    font-size: 1.7em;
    line-height: 1.3em;
    display: block;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
header{
    display: flex;
    justify-content: start;
    align-items: flex-end;
    gap: 0 1rem;
    padding: 2rem 2rem 1rem;
}
article{
    position: relative;
}
.pss{
    position: absolute;
    top: 1rem;
    right:  2rem;
}
footer{
    background: #FFF;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
footer p{
    padding-bottom: 0;
}
@media only screen and (max-width: 499px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a,span){
        display: inline-block;
    }
    header{
        justify-content: center;
        padding: 1rem;
    }
}
@media only screen and (max-width: 480px) {
    .pss{
        position: static;
        margin-top: 1rem;
    }
    h1,h2,h3{
        text-align: center;
    }
    .hide_m{
        display: none;
    }
    article, footer{
        padding: 1rem;
    }
}
@media only screen and (max-width: 410px) {
    footer{
        flex-direction: column;
        align-items: center;
    }
    footer p{
        text-align: center;
        padding-bottom: 1rem;
    }
}