@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 0.875em/1.3 Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 930px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: 0;
    font-size: 1.8em;
    line-height: 1.2;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.125em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
: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.25rem;
    list-style: none;
}
li {
    padding: 0 0 0.25rem 0.625rem;
}
ul li:before {
    content: "\2022";
    font-size: 1em;
    float: left;
    margin: -1px 0 0 -0.625rem;
}
header {
    position: absolute;
    top: 0;
    left: 0;
}
article {
    padding: 1.25rem 1rem 0.25rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
article div {
    width: 48.88%;
}
h2, ul li::before {
    color: #169ED8;
}
.right ul {
    padding-bottom: 1rem;
}
.left :is(p, li) {
    line-height: 1.5;
}
footer {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
}
@media only screen and (max-width: 929px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header, footer {
        display: flex;
        justify-content: center;
        position: static;
    }
    article {
        display: block;
    }
    article div {
        width: auto;
    }
    h1 {
        margin-bottom: 0.375rem;
    }
    p span {
        display: inline-block;
    }
    footer {
        padding: 0 1rem 1rem;
    }
}