@charset "utf-8";
/* Standard */
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    font: 1em/1.5em Arial, "Segoe UI", Calibri, sans-serif;
    color: #fff;
}
#wrapper {
position: relative;
  margin: 1rem auto;
  overflow: hidden;
  max-width: 662px;
  border: solid 1px #000;
  background: #DB1E3D;
}
.big{
    display: block;
    font-size: 1.250em;
    line-height: 1.5;
}
p {
    padding-bottom: 1rem;
}
h1,h2,h3{
    font-weight: 400;
}
h1 {
    margin: 0rem 0rem 1.5rem;
    font-size: 1.250em;
    line-height: 1.1em;
}
h2{
font-size: 2.1em;
  line-height: 1.3;
  padding: 0.7rem 0 9.3rem;
}
h3{
    font-size: 1.313em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
ul {
    padding: 0rem 0rem 1rem 0rem;
    list-style: none;
}
li {
    padding: 0 0 0 16px;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: 0 0 0 -16px;
}

header{
    position: absolute;
    right: 0;
    top: 0;
}

figure{
    margin: 0 0 0 -1rem;
}
article {
    padding: 1rem 1rem 0;
}
article img{
    display: block;
}
footer {
 position: absolute;
  right: 1.5rem;
  bottom: -6px;
}
img {
    max-width: 100%;
    height: auto;

}
@media only screen and (max-width:660px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
   
    p :is(span, a) {
        display: inline-block;
    }
    header{
        position: static;
        display: flex;
        justify-content: center;
    }
    footer{
        position: static;
        padding: 1rem;
    }
    figure{
        margin: 1rem;
        display: flex;
        justify-content: center;
    }
    br{
        display: none;
    }
    h2{
        padding-bottom: 1rem;
    }
}