@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.25em/1.2 Arial, sans-serif;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 680px;
    margin: 1rem auto;
    background: url('../images/bg.jpg') no-repeat top center;
    height: 489px;
    overflow: hidden;
}
p {
    padding-bottom: 1.25rem;
}
h1 {
    margin: 0 0 1rem;
    font-size: 1.25em;
    line-height: 1.2;
}
h1 span {
    font-size: 0.7em;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
header {
    padding: 2rem 2.5rem 0;
    display: flex;
    justify-content: flex-start;
}
main {
    padding: 1rem 2rem 0;
}
@media only screen and (max-width: 679px) {
    body {
        font-size: 1.125em;
        line-height: 1.3;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
        height: auto;
    }
    header {
        background-color: #0571B6;
        padding: 1rem 2rem;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
    }
    header, main {
        padding: 1rem;
    }
}