@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-size: 1.25em;
    line-height: 1.3;
    text-align: center;
    font-weight: 500;
}
#wrapper {
    position: relative;
    max-width: 670px;
    min-width: 250px;
    margin: 1rem auto;
    background: #fff url('./bg.jpg') no-repeat top 44px center;
    height: 1144px;
    overflow: hidden;
    padding: 8.625rem 3.75rem 0;
}
p {
    padding-bottom: 3rem;
}
h1 {
    margin: 4rem 0 0.5rem;
    font-size: 1.375em;
    line-height: 1.1;
}
h1 span {
    font-size: 0.7em;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
}
h2 {
    font-size: 1.1em;
    line-height: 1.3;
    margin-bottom: 0.25rem;
    margin-top: 3rem;
}
h1, h2 {
    font-family: "Roboto Mono", monospace;
    letter-spacing: 4px;
}
strong {
    font-weight: 600;
}
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;
}
article p:last-of-type {
    padding-bottom: 5rem;
}
@media only screen and (max-width: 669px) {
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
        background: #fff;
    }
    p {
        padding-bottom: 1rem;
    }
    h1, h2 {
        margin-top: 2rem;
    }
    article p:last-of-type {
        padding-bottom: 2rem;
    }
}
@media only screen and (max-width: 480px) {
    body {
        font-size: 1em;
    }
}