@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000000;
    font: 1.2em/1.3em "Segoe UI", "Trebuchet MS", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 555px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #fff;
    overflow: hidden;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a.underline {
    text-decoration: underline;
}
p {
    padding-bottom: 0.625rem;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
h1 {
    margin: -0.25rem 0 0.625rem;
    font-size: 2.2em;
    line-height: 1.1;
}
h1 span {
    font-size: 1.25rem;
}
strong, h1 {
    font-weight: 600;
}
header {
    padding: 1.25rem 1.25rem 2rem;
    background: #2BA5DC;
}
header :is(p, h1) {
    color: #fff;
}
article {
    padding: 0 1.25rem 0.5rem;
    position: relative;
}
figure {
    margin: -1.1rem 0 2.5rem;
    display: flex;
    justify-content: flex-end;
}
footer {
    position: absolute;
    right: 1.2rem;
    bottom: 1rem;
}
@media only screen and (max-width:554px) {
    body {
        font-size: 1em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    br {
        display: none;
    }
    span {
        display: inline-block;
    }
    figure {
        margin-bottom: 1.5rem;
    }
    header {
        padding: 1rem;
    }
    footer {
        position: static;
        padding: 0 1rem 1rem;
        display: flex;
        justify-content: center;
    }
    h1{
        font-size: 1.9em;
    }
}