@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.25em;
    line-height: 1.3;
    text-align: center;
}
#wrapper {
    position: relative;
    max-width: 433px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 0;
}
p {
    padding-bottom: 0.5rem;
}
h1 {
    margin: -0.25rem 0 0.25rem;
    font-size: 1.9em;
    line-height: 1.1;
    color: #505C96;
}
h1 span {
    font-size: 0.7em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
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 0.25rem;
    list-style: none;
}
li span {
    position: relative;
    padding-left: 0.9rem;
}
ul li span:before {
    content: "•";
    display: inline-block;
    font-size: 1.8em;
    position: absolute;
    float: left;
    top: -10px;
    left: 0;
}
header {
    padding: 0.6rem 0.8rem;
}
article > p:first-of-type {
    margin-top: -2rem;
}
article {
    padding: 0 0.8rem;
}
footer p {
    background: #505C96;
    color: #fff;
    padding: 0.35rem 0.8rem;
}
@media only screen and (max-width:432px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
    }
    article > p:first-of-type {
        margin-top: 0;
    }
    h1 {
        font-size: 1.5em;
    }
}