@charset "utf-8";
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 1.125em;
    line-height: 1.3;
}
#wrapper {
    position: relative;
    max-width: 762px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #000;
    background: #fff url('./bg.jpg') no-repeat bottom center;
    overflow: hidden;
    padding: 2.5rem 5rem 0 2rem;
}
p {
    padding-bottom: 1.25rem;
}
.pb {
    padding-bottom: 2.5rem;
}
h1 {
    margin: 0.5rem 0 0;
    font-size: 3em;
    line-height: 1;
    font-weight: 400;
}
h1 span {
    font-size: 1.125rem;
    display: inline-block;
    padding-left: 2.25rem;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 400;
}
h3 {
    font-size: 1.4em;
    line-height: 1.3;
    font-weight: 400;
    margin-bottom: 1.5rem;
}
h3 span {
    font-size: 1rem;
    display: inline-block;
    padding-left: 5rem;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
ul {
    padding: 0 0 1rem;
    list-style: none;
}
li {
    padding-left: 1.4rem;
}
ul li:before {
    content: "•";
    float: left;
    margin-top: 0;
    margin-left: -1.4rem;
}
ul + p {
    text-align: justify;
}
.logo {
    position: absolute;
    bottom: 0;
    right: 0;
}
footer {
    padding: 3rem 0 0.5rem;
}
footer p {
    color: #fff;
    line-height: 1.4;
}
@media only screen and (max-width: 761px) {
    body {
        font-size: 1em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem 1rem 0;
        background: #fff;
    }
    :is(h1, h3) span {
        padding-left: 0;
    }
    ul + p {
        text-align: left;
    }
    article br {
        display: none;
    }
    footer {
        margin: 0 -1rem;
        padding: 0;
        background: linear-gradient(to right, #797B7E, #CFD0D2);
    }
    footer p {
        padding: 1rem;
        text-align: center;
    }
    .logo {
        position: static;
        display: flex;
        justify-content: flex-end;
    }
}
@media only screen and (max-width: 480px) {
    h1 {
        font-size: 2.5em;
    }
}