@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1em/1.3em Helvetica, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 680px;
    margin: 1rem auto;
    border: solid 1px #000;
    background: url('../images/bg-top.jpg') no-repeat top center, url('../images/bg-bot.jpg') no-repeat bottom center, #fff;
    overflow: hidden;
}
p {
    padding-bottom: 0.75rem;
}
h1 {
    margin: 0;
    font-size: 1.385em;
    line-height: 1.2;
}
h1 + p {
    font-size: 0.923em;
    line-height: 1.3;
}
h2 {
    font-size: 1.25em;
    line-height: 1.3;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
ul {
    padding: 0 0 0.75rem;
    list-style: none;
}
li {
    padding-left: 1.625rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -1.625rem;
}
header {
    padding: 1.25rem 0.75rem 0;
    display: flex;
    justify-content: flex-end;
}
article {
    padding: 0 2.5rem 3rem;
    margin-top: -2rem;
}
.pl {
    padding-left: 1.25rem;
}
figure {
    position: absolute;
    right: 3.75rem;
    bottom: 3rem;
}
footer p {
    padding: 0 2.5rem 1rem;
}
.big {
    display: block;
    font-size: 1.385em;
    line-height: 1.3;
}
@media only screen and (max-width: 679px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        background: #fff;
    }
    header, footer p {
        background-color: #FEC601;
        padding: 1rem;
    }
    header {
        justify-content: center;
    }
    article {
        margin-top: 0;
        padding: 1rem 2rem;
    }
    figure {
        position: static;
        display: flex;
        justify-content: center;
    }
    footer p {
        text-align: center;
    }
    h1 br {
        display: none;
    }
}
@media only screen and (max-width: 480px) {
    article {
        padding: 1rem;
    }
    .pl {
        padding-left: 0.5rem;
    }
    li {
        padding-left: 1.25rem;
    }
    ul li::before {
        margin-left: -1.25rem;
    }
    .big, h1 {
        font-size: 1.3em;
    }
}