@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    text-align: center;
    color: #FFF;
    font: 1.313em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 550px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg.jpg') no-repeat top left;
    overflow: hidden;
    height: 548px;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0.75rem 0 2.5rem;
    font-size: 1.75em;
    line-height: 1.2;
}
h1 span {
    font-size: 0.5em;
    display: block;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: #FFF;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
article {
    padding-top: 0.5rem;
}
article p a.ttu {
    font-size: 1.5em;
    line-height: 1.3em;
    text-transform: uppercase;
}
footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -3.35rem;
    padding: 0 1.125rem 0.5rem;
}
p.pb_2 {
    padding: 1rem 0.5rem;
    margin: 1rem;
    font-size: 1.125em;
    line-height: 1.3;
    background: rgba(37, 95, 148, 0.8);
}
.big {
    display: inline-block;
    padding-bottom: 0.125rem;
    font-size: 1.25em;
    line-height: 1.3;
}
@media only screen and (max-width: 549px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background-image: linear-gradient(to bottom, #4F95CF, #0A68AA);
        height: auto;
    }
    p :is(a, span) {
        display: inline-block;
    }
    p.pb_2{
        margin-inline: 0;
    }
    article {
        padding: 1rem 1rem 0;
    }
    header {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    footer {
        margin: 0;
    }
    br{
        display: none;
    }
    h1 {
        font-size: 1.3em;
        margin: 1rem 0;
    }
}