@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font:  1em/1.3em Verdana, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 852px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #5D666D;
    overflow: hidden;
}
p {
    padding-bottom: 0.8rem;
}
h1 {
    margin: 0 0 0.8rem 1.25rem;
    font-size: 1em;
    line-height: 1.3em;
    font-weight: 400;
}
h1:before {
    content: "■";
    font-size: 1.5em;
    float: left;
    margin: -4px 0 0 -1.25rem;
}
h3 {
    font-size: 1.6em;
    line-height: 1.2;
    margin: 4.5rem 0 0.8rem;
    font-style: italic;
}
h4 {
    font-size: 1em;
    line-height: 1.3;
    margin: 4rem 0 0.4rem;
}
:is(a:link, a:hover, a:visited, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
img {
    max-width: 100%;
    height: auto;
}
h2, ul {
    font-size: 0.833em;
    line-height: 1.3;
    font-weight: 400;
}
ul {
    padding: 0;
    list-style: none;
}
li {
    padding: 0.4rem 0 0 1rem;
}
ul li:before {
    content: "■";
    font-size: 1.5em;
    float: left;
    margin: -7px 0 0 -1rem;
}
:is(li, h1)::before, h3, h4 {
    color: #D1C16F;
}
.box {
    width: 425px;
    padding: 1rem;
}
.flex {
    display: flex;
    justify-content: space-between;
}
header {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}
footer {
    position: absolute;
    bottom: 2rem;
    left: 10.5rem;
}
@media only screen and (max-width:851px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    .flex {
        flex-direction: column;
        align-items: center;
    }
    .box {
        width: 100%;
    }
    h4, h3 {
        margin-top: 0;
    }
    header, footer {
        position: static;
        display: flex;
        justify-content: center;
        padding: 1rem;
    }
}