@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font: 300 1em/1.3 "Inter", Arial, sans-serif;
}
#wrapper {
    position: relative;
    max-width: 1010px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 1px #000;
    background-color: #fff;
    overflow: hidden;
    padding: 1.25rem;
}
p {
    padding-bottom: 1rem;
}
h1 {
    margin: 0 0 2rem;
    font-size: 1.625em;
    line-height: 1.1;
    font-weight: 400;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 0.25rem;
}
a {
    color: #000;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    white-space: nowrap;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding: 0 0 0.25rem 0.75rem;
}
li:before {
    content: "•";
    float: left;
    margin: -2px 0 0 -0.75rem;
}
ul:last-of-type {
    padding-bottom: 1.75rem;
}
main {
    padding: 4rem 5rem;
}
footer p {
    padding-bottom: 0.125rem;
}
@media only screen and (max-width: 1009px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    main {
        padding: 1rem 0.5rem;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 0.875em;
    }
    #wrapper {
        padding: 0.5rem;
    }
    h1 {
        font-size: 1.4em;
    }
}