@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: 400 1.25em/1.2 "Roboto Condensed", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 610px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1rem 1.25rem 0;
}
p {
    padding-bottom: 0.875rem;
}
h1 {
    margin: -0.375rem 0 0.25rem;
    font-size: 2.125em;
    line-height: 1.1;
}
h1 span {
    font-size: 1.25rem;
    font-weight: 400;
}
h1 + p {
    padding-bottom: 0.4rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.5rem;
    list-style: none;
}
li {
    padding-left: 1rem;
}
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 0.75rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: flex-start;
}
.logo {
    padding: 0.5rem 0 0 0;
}
footer p {
    font-size: 0.92em;
    line-height: 1.25;
}
@media only screen and (max-width: 609px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    p :is(span, a) {
        display: inline-block;
    }
}
@media only screen and (max-width: 520px) {
    header {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .logo {
        margin: 0;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
    }
    h1 span {
        font-size: 1rem;
    }
    h1 {
        font-size: 1.75em;
    }
}