@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.23em/1.3em Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 595px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem;
}
p {
    padding-bottom: 1rem;
}
:is(h1, h2, h3) {
    text-transform: uppercase;
}
:is(h1, h3) {
    color: #FFF;
}
h1 {
    margin: 0 0 0.25rem;
    font-size: 1.4em;
    line-height: 1.1em;
}
h1 span {
    font-size: 0.7em;
    text-transform: none;
}
h2 {
    font-size: 1.15em;
    line-height: 1.3em;
    font-weight: normal;
}
h3 {
    font-size: 1.1em;
    line-height: 1.3em;
}
h3+p {
    font-size: 0.875em;
    line-height: 1.3em;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding-left: 1.3rem;
}
ul li:before {
    content: "\2022";
    float: left;
    margin: -1px 0 0 -1.3rem;
}
header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}
header>img {
    position: absolute;
    top: 3.875rem;
    left: 1rem;
}
article {
    margin-left: 2rem;
}
article img {
    display: block;
}
article section {
    padding: 1rem 1rem 0;
    background: #FFCB04;
    position: relative;
}
.small {
    font-size: 0.6em;
    line-height: 1.3;
}
.last {
    font-size: 0.65em;
    line-height: 1.3;
    position: absolute;
    bottom: 0;
    right: 1rem;
}
.bg {
    background: #fff;
}
footer {
    position: absolute;
    bottom: 3.7rem;
    right: 2rem;
}
@media only screen and (max-width: 594px) {
  body{
    font-size: 1.05em;
    line-height: 1.3em;
  }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    br{
      display: none;
    }
    p :is(a,span){
      display: inline-block;
    }
    p {
        text-align: left;
    }
    header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    header>img, .last {
        position: static;
    }
    article {
        margin: 0 0 1rem;
    }
    footer {
        position: static;
        display: flex;
        justify-content: center;
    }
}