@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #0079C2;
    font: 1em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 550px;
    margin: 1rem auto;
    border: solid 1px #0079C2;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.6em;
    line-height: 1.1;
    padding-left: 1rem;
}
h1:before {
    content: "•";
    font-size: 0.8em;
    float: left;
    margin: 0 0 0 -1rem;
    color: #F36421;
}
h1 span {
    font-weight: normal;
    font-size: 0.8em;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
    color: #FFF;
    padding: 1rem;
    background: #0079C2;
}
h3 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #0079C2;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
.bg {
    background: #D9E5F4;
    padding: 1rem 1.5rem;
    margin-left: -1.5rem;
    display: inline-block;
    border-bottom-right-radius: 20px;
    margin-bottom: 1rem;
}
article {
    padding: 1rem 1.5rem 0;
}
footer {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
}
.button {
    position: absolute;
    bottom: -0.5rem;
    left: 12.5rem;
    transform: rotate(-5deg);
    font-size: 1.11em;
    line-height: 1.3em;
}
.button a {
    display: inline-block;
    background: #F36421;
    padding: 0.2rem 0.7rem;
    margin: 1rem auto;
    cursor: pointer;
    border: 0.15rem solid #FFF;
    transition: all 140ms ease 0s;
    -moz-transition: all 140ms ease 0s;
    -webkit-transition: all 140ms ease 0s;
    color: #fff;
    box-shadow: -0.1rem 0.1rem 1rem #999;
}
.button a:hover {
    background-color: #fff;
    text-decoration: none;
    color: #F36421;
}
@media only screen and (max-width: 549px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    h2 {
        text-align: center;
    }
    footer, .button {
        position: static;
        display: flex;
        justify-content: center;
    }
    h1, h3 {
        font-size: 1.4em;
    }
}
@media only screen and (max-width: 480px) {
    article {
        padding: 1rem;
    }
}