@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.3em "Segoe UI", Calibri, sans-serif;
    color: #000;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 520px;
    border: solid 4px #78C470;
    background: #fff;
    padding: 1.5rem 1rem 1rem;
}
p {
    padding-bottom: 0.7rem;
    text-align: justify;
    hyphens: auto;
}
h1 {
    margin: 1rem 0 0.3rem;
    font-size: 1.492em;
    line-height: 1.1em;
}
h1 small {
    font-size: 0.7em;
}
h1,h1+p{
    text-align: center;
}
strong {
    font-weight: 600;
}
p span {
    font-weight: 700;
    color: #78C470;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: underline;
}
header {
    position: absolute;
    top: 1rem;
    right: 0.5rem;
}
footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    padding-top: 0.5rem;
}
footer p {
    padding-bottom: 0.3rem;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width:519px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header {
        position: static;
        display: flex;
        justify-content: center;
        padding-bottom: 0.7rem;
    }
    p{
        text-align: left;
    }
    p :is(a, span) {
        display: inline-block;
    }
    br {
        display: none;
    }
    figure {
        display: flex;
        justify-content: center;
    }
    footer {
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
}