@charset "utf-8";
@font-face {
    font-family: 'Bauhaus Md BT';
    src: url('../fonts/BauhausITCbyBT-Bold.eot');
    src: url('../fonts/BauhausITCbyBT-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/BauhausITCbyBT-Bold.woff') format('woff'), url('../fonts/BauhausITCbyBT-Bold.ttf') format('truetype'), url('../fonts/BauhausITCbyBT-Bold.svg#BauhausITCbyBT-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1em/1.3em Verdana, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 650px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #000 url('../images/bg.jpg') top left no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
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 1rem;
    font-size: 1.25em;
    line-height: 1.3;
}

h1 span {
    font-size: 1rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3em;
    margin-bottom: 0;
}
h3 {
    font-size: 1.625em;
    line-height: 1.3em;
}
h3, .font {
    font-weight: bold;
    font-family: 'Bauhaus Md BT', Aria, sans-serif;
}
h1, h2 {
    font-weight: normal;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
li:before {
    content: "-";
    float: left;
    margin: -1px 0 0 -1rem;
}
header {
    display: flex;
    justify-content: space-between;
    margin: 0 2rem 3rem 0;
}
:is(footer, header) p, h3 {
    color: #E3E419;
}
footer p {
    font-size: 1.125em;
}
.custom {
    color: #EA4596;
    text-align: center;
    position: absolute;
    bottom: 3rem;
    right: 2rem;
    font-size: 1.5em;
    line-height: 1.3;
}
p.custom img {
    display: block;
    margin: 1rem auto 0;
}
footer :is(span, a) {
    display: inline-block;
    margin-right: 0.625rem;
}
@media only screen and (max-width:649px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    p {
        -moz-hyphens: auto;
        -o-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
    p :is(span, a) {
        display: inline-block;
    }
    header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 0 0 1rem;
    }
    .custom {
        position: static;
    }
    article br {
        display: none;
    }
}