@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #fff;
    font: 400 1.125em/1.3em 'PT Sans', Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 680px;
    margin: 1rem auto;
    border: none;
    background: #2F384B;
    overflow: hidden;
}
:is(h1, h2, strong) {
    font-weight: 700;
}
:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0;
    font-size: 1.313em;
    line-height: 1.3;
    text-align: center;
}
h2 {
    font-size: 1.2em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
}
ul {
    padding: 0 0 0.25rem;
    list-style: none;
}
li {
    padding: 0 0 0.125rem 1rem;
    position: relative;
}
li:before {
    content: "\2022";
    font-size: 1rem;
    position: absolute;
    left: 0;
    top: 0;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
header {
    padding: 1rem;
}
article {
    padding: 1rem 1.25rem 0.25rem;
    background: #fff;
    border-inline: 2px solid #92B4DA;
}
article :is(p, h2, li) {
    color: #2F384B;
}
footer {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem 2rem;
}
footer p {
    padding: 0;
    font-size: 1rem;
    text-align: center;
}
@media only screen and (max-width:679px) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }
    span {
        display: inline-block;
    }
    article {
        border: none;
    }
}
@media only screen and (max-width:480px) {
    footer {
        flex-direction: column;
        align-items: center;
    }
}