@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 615px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1.5rem 1.5rem 0.25rem;
}
p {
    padding-bottom: 0.5rem;
}
h1, h2 {
    margin: 0;
    font-size: 2em;
    line-height: 1.1;
}
h1, h1 + p, h2, h2 + p {
    color: #18558A;
    font-family: "Roboto Condensed", sans-serif;
}
h1 + p, h2 + p {
    font-size: 1.08em;
}
h1 span {
    font-size: 0.7em;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
article > p:first-of-type {
    font-size: 1.05em;
    line-height: 1.3;
}
header {
    position: absolute;
    top: 12px;
    right: 14px;
}
figure {
    position: absolute;
    top: 168px;
    right: 18px;
}
footer {
    position: absolute;
    bottom: 10px;
    right: 18px;
}
@media only screen and (max-width:614px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    p {
        text-align: left;
    }
    header, figure, footer {
        position: static;
        text-align: center;
    }
}