@charset "utf-8";
/* Standard */
: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: #fff;
}
#wrapper {
    position: relative;
    margin: 1rem auto;
    overflow: hidden;
    max-width: 510px;
    border: solid 3px #185AAA;
    background: #185AAA;
}
p {
    padding-bottom: 0.5rem;
    text-align: center;
}
h1 {
    margin: 0rem 0rem 0.5rem;
    font-size: 1.592em;
    line-height: 1.1em;
    text-align: center;
}
h1 small {
    font-size: 0.7em;
}
h3 {
    font-size: 1.8em;
    line-height: 1.3;
    padding-bottom: 1rem;
    text-align: center;
}
h2 {
    text-align: right;
    font-size: 1.62em;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.link {
    font-size: 1.65em;
    line-height: 1.2;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
.title :is(h1, p, h2) {
    color: #185AAA;
}
.title {
    margin: 0 -1rem 0.5rem;
    padding: 0.3rem 1rem;
    background: #FFE569;
}
header img {
    display: block;
}
article {
    padding: 0 1rem;
}
section {
    padding-left: 135px;
}
footer {
    position: absolute;
    left: 1rem;
    bottom: 8px;
}
img {
    max-width: 100%;
    height: auto;
}
@media only screen and (max-width: 509px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    section {
        padding: 0;
    }
    .title br {
        display: none;
    }
    h2 {
        text-align: center;
    }
    .link {
        font-size: 1.4em;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}