@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 1.125em/1.3em Calibri, Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 700px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: -1rem 0 0;
    text-align: center;
    font: 700 1.33em/1.2 Arial, sans-serif;
}

: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 1rem;
    list-style: none;
}
.logo {
    padding: 0 1rem 1rem;
    display: flex;
    justify-content: flex-end;
}
figure {
    margin: 0 -1rem 1rem;
}
article :is(p, li, h2) {
    font-size: 1.08em;
    line-height: 1.3em;
}
.box {
    background-color: #A9D08E;
    margin: 0 -1rem 1rem;
    padding: 1rem 1rem 0;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex div {
    width: 46%;
}
.flex div:last-of-type {
    width: 52%;
}
footer {
    padding: 0 0 0;
}
@media only screen and (max-width: 699px) {
    body {
        font-size: 1em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    header {
        justify-content: center;
        padding: 0 0 1rem;
    }
    .flex {
        display: block;
    }
    .flex div {
        width: auto !important;
    }
    p span {
        display: inline-block;
    }
}