@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em "Segoe UI", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 650px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #0D4E9C url('../images/bg.jpg') top center no-repeat;
    overflow: hidden;
    padding: 5.75rem 3rem 2rem;
}
p {
    padding-bottom: 1rem;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
h1 {
    margin: 0 0 2rem;
    font-size: 1.875em;
    line-height: 1.1em;
    letter-spacing: 1px;
}
h1 span {
    font-weight: 400;
    display: inline-block;
    margin-top: 0.5rem;
}
h2 {
    font-size: 4.25em;
    line-height: 1.2;
    margin-bottom: 2rem;
}
h1, h2 {
    text-transform: uppercase;
    margin-bottom: 2rem;
}
hr {
    border: 0;
    border-bottom: 2px dotted #fff;
    margin: 4rem 0 1.5rem;
}
article p {
    width: 74%;
}
footer {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
}
@media only screen and (max-width: 649px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        padding: 2rem;
    }
    p {
        text-align: left;
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    .hide_m {
        display: none;
    }
    article p {
        width: auto;
    }
    h2 {
        font-size: 3.5em;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}
@media only screen and (max-width:480px) {
    #wrapper {
        padding: 1rem;
    }
    h1 {
        font-size: 1.5em;
    }
    h2 {
        font-size: 2.25em;
    }
}