@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 400 1.125em/1.3em Segoe, "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 510px;
    margin: 1rem auto;
    border: 2px solid #F37321;
    background: #fff;
    overflow: hidden;
}
:is(a:link,a:hover,a:visited,a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
article p {
    padding-bottom: 1.25rem;
}
h1 {
    margin: 1.25rem 0 2.5rem;
    font-size: 1.75em;
    line-height: 1.1;
    font-style: italic;
}
h1 span {
    font-size: 1.125rem;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header p {
    color: #193493;
    font-size: 3.15em;
    line-height: 1;
    font-weight: 700;
    margin: 1.25rem 1.25rem -0.5rem;
    position: relative;
}
article {
    padding: 1rem 1.25rem 0;
}
footer {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
}
@media only screen and (max-width:509px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    :is(article, footer) {
        padding: 1rem 1rem 0;
    }
    p span {
        display: inline-block;
    }
    header p {
        padding: 1rem;
        font-size: 2.2em;
    }
    h1 br {
        display: none;
    }
    h1 {
        font-size: 1.5em;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}