@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1em/1.5em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 480px;
    margin: 1rem auto;
    border: 10px solid #11375C;
    background: #fff url('../images/icon.jpg') no-repeat bottom 5rem right 7.6rem;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.7em;
    line-height: 1.1;
    text-align: center;
}
h1 span {
    font-size: 0.875em;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
article {
    padding: 0.25rem 1.25rem 0;
}
footer {
    padding: 0 1.25rem;
    border-bottom: 10px solid #C1D732;
}
footer p{
    font-size: 0.9em;
    line-height: 1.5;
}
footer a{
    font-size: 1.188em;
    line-height: 1.3;
}
figure {
    margin: 0;
    position: absolute;
    right: 1.25rem;
    bottom: 2rem;
}
@media only screen and (max-width:479px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
    }
    p a, span {
        display: inline-block;
    }
    br:not(.block){
        display: none;
    }
    figure{
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }
}