@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 0.875em/1.5 'Open Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 725px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: #000 url('bg.jpg') no-repeat;
    overflow: hidden;
    padding: 0;
    height: 971px;
}
h1, h2, strong {
    font-weight: 700;
}
p {
    padding-bottom: 2rem;
}
h1 {
  margin: 0 0 2rem;
  font-size: 2.3em;
  line-height: 1.3;
  text-transform: uppercase;
  color: #D7171F;
}
h1 span {
    font-size: 0.67em;
    line-height: 1.3;
    display: block;
    font-weight: normal;
    color: #000;
    margin-left: 2rem;
}
h1 small{
    font-size: 0.875rem;
    color: #000;
    text-transform: none;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
article {
    padding: 4.2rem 1.75rem 1rem;
}

article aside p:last-of-type {
    font-size: 0.9em;
    line-height: 1.3;
    width: 336px;
}
article figure{
margin: 0 0 1rem;
  position: absolute;
  left: 28.4rem;
  top: 37rem;
}
footer {
  position: absolute;
  right: 2px;
  bottom: 27px;
}
@media only screen and (max-width:723px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        background: #363735;
    }
    h1{
        background: #fff;
        padding: 0.5rem;
    }
    article, footer{
        padding: 0.5rem 1rem;
    }
    article aside p:last-of-type{
        width: 100%;
    }
    article figure, footer{
        position: static;
        display: flex;
        justify-content: center;
    }
    br{
        display: none;
    }
}
@media only screen and (max-width:480px) {
    h1{
        font-size: 2.125em;
    }
    h1 span{
        margin-left: 0;
    }
}