@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 380px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 1.25rem;
}
p, ul {
    font-weight: 700;
}
h1 {
    margin: 0 0 0.25rem;
    font-size: 1.52em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
}
h3 {
    color: #46C1F4;
    font-size: 1.75em;
    line-height: 1.1;
    margin-bottom: 1rem;
}
h3 span {
    font-size: 0.63em;
}
a {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.5rem;
}
ul li:before {
    content: "•";
    display: inline-block;
    font-size: 1.1em;
    position: relative;
    float: left;
    margin-top: -1px;
    margin-left: -1.5rem;
    color: #46C1F4;
}
header {
    padding: 1.5rem 1rem 0.25rem;
}
article {
    padding: 0 1rem;
}
footer {
    padding: 0.5rem 1rem;
    background: #46C1F4;
    text-align: center;
    color: #fff;
}
footer p {
    padding-bottom: 0;
}
p span {
    font-size: 1.05em;
    line-height: 1.3;
    color: #46C1F4;
}
@media only screen and (max-width:379px) {
    body {
        font-size: 1.25em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    h3 {
        font-size: 1.5em;
    }
}