@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #221C22;
    font: 600 1em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 505px;
    margin: 1rem auto;
    border: solid 2px #1C9D98;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1.25rem;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0 0 0.3rem;
    font-size: 1.6em;
    line-height: 1.1em;
    color: #1C9D98;
    text-transform: uppercase;
    font-weight: 600;
}
h1 span {
    font-size: 1rem;
    text-transform: none;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #1C9D98;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    padding: 0 0 0.2rem;
}
footer p {
    padding-bottom: 0;
    font-size: 1.285em;
    line-height: 1.2;
}
footer p {
    font-size: 1.285em;
    line-height: 1.2em;
    color: #1C9D98;
    font-weight: 600;
}
footer i {
    font-style: normal;
    display: inline-block;
}
footer a:first-of-type {
    padding-right: 0.5rem;
}
footer span {
    font-size: 0.825em;
}
footer img {
    padding-bottom: 0.2rem;
}
@media only screen and (max-width:504px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 1rem;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h1 {
        font-size: 1.4em;
    }
}