@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #57585A;
    font: 1.2rem/1.3em 'Roboto Condensed', sans-serif;
}
#wrapper {
    position: relative;
    max-width: 621px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #939598;
    background: url('bg.jpg') no-repeat 0px 582px;
    background-size: 8% 45%;
    overflow: hidden;
    padding: 1rem 1rem 0;
}
p {
    padding-bottom: 1.5rem;
}
p strong {
    font-size: 1.07em;
    line-height: 1.2em;
}
h1 {
    margin: 0 0 2rem;
    font-size: 2.432em;
    line-height: 1.2;
    color: #145596;
}
h1 span {
    font-size: 0.57em;
    display: block;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: #57585A;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1.5rem;
    list-style: none;
}
li {
    padding-left: 2.3rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.3em;
    position: relative;
    float: left;
    margin-top: 0;
    margin-left: -1rem;
}
header {
    padding: 0 0 2rem;
}
article section {
    margin-left: 3rem;
}
article p:last-of-type {
    font-size: 0.6em;
    line-height: 1.3em;
}
footer {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    display: flex;
    justify-content: center;
}
@media only screen and (max-width:520px) {
    body {
        font-size: 1em;
        line-height: 1.3em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        background: #FFF;
    }
    p {
        text-align: left;
    }
    header{
        padding-bottom: 1rem;
    }
    article section {
        margin-left: 0;
    }
    footer {
        position: static;
    }
    li {
        padding-left: 1rem;
    }
    h1 {
        font-size: 2em;
        text-align: center;
    }
    br {
        display: none;
    }
}