@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #333939;
    font: 0.938em/1.4 'Roboto', sans-serif;
}
#wrapper {
    position: relative;
    max-width: 940px;
    margin: 1rem auto 10rem;
    border: 0 solid #333939;
    background: #fff;
    overflow: hidden;
    padding: 1.5rem 4.7rem;
    text-align: left;
    box-shadow: 3px 3px 11px 2px #939095;
}
a {
    color: blue;
    text-decoration: underline;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 1.25rem;
    font-size: 1.9em;
    line-height: 1.4;
    font-weight: 500;
    text-align: center;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1.8em;
    line-height: 1.2;
    margin-bottom: 0.25rem;
    font-weight: 500;
}
h3 {
    font-size: 1.313em;
    line-height: 1.2;
    margin-bottom: 0.85rem;
    color: #000;
}
ul {
    padding: 0 0 1rem 3rem;
    list-style: none;
}
li {
    padding: 0 0 0.25rem 1rem;
}
li:before {
    content: "\2022";
    display: block;
    font-size: 1.3em;
    line-height: 1;
    position: relative;
    float: left;
    margin: 1px 0 0 -1rem;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
header {
    padding: 1.75rem 4.7rem 2.25rem;
    margin: -1.5rem -4.7rem 2rem;
    background: #F2F2F2 url('line.svg') no-repeat bottom;
    display: flex;
    justify-content: space-between;
    flex-flow: row-reverse;
}
header>aside {
    margin-top: 1rem;
}
article>p:first-of-type {
    padding-bottom: 1.25rem;
}
footer {
    text-align: center;
}
footer>aside {
    text-align: left;
    font-size: 0.813em;
    line-height: 1.3;
}
@media only screen and (max-width:940px) {
    #wrapper {
        border: none;
        margin: 0 auto 8rem;
        padding: 0.8rem;
    }
    ul {
        padding-left: 1rem;
    }
    article br {
        display: none;
    }
}
@media only screen and (max-width:650px) {
    header {
        display: block;
        padding-bottom: 1.25rem;
    }
    h1 {
        font-size: 1.7em;
    }
}
