@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');
:root {
    font-size: 16px;
}
* {
    box-sizing: border-box;
    margin: 0;
}
html {
    min-height: 100%;
}
body {
    color: #000;
    font-family: "Nunito Sans", sans-serif;
    font-size: 1.25em;
    line-height: 1.2;
    font-weight: 300;
}
#wrapper {
    position: relative;
    max-width: 750px;
    min-width: 250px;
    margin: 1rem auto;
    border: solid 2px #B68333;
    background-color: #fff;
    overflow: hidden;
    padding: 1.25rem 1.25rem 0;
}
p {
    padding-bottom: 0.75rem;
}
h1 {
    margin: 0;
    font-size: 1.53em;
    line-height: 1;
}
h1 span {
    font-size: 0.6em;
}
h2 {
    font-size: 1em;
    line-height: 1.3;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}
ul {
    padding: 0 0 0.75rem;
    list-style: none;
}
li {
    padding-left: 0.75rem;
    width: fit-content;
    position: relative;
    z-index: 1;
}
ul li:before {
    content: "•";
    font-size: 0.8em;
    float: left;
    margin-top: 0;
    margin-left: -0.75rem;
}
.box {
    background-color: #B5CBBD;
    padding: 1rem;
    margin-bottom: 1.25rem;
}
.small {
    font-size: 0.89em;
    line-height: 1.2em;
    width: 71%;
}
footer p {
    margin: 0 -1.25rem;
    padding: 0.625rem 1.25rem;
    background-color: #B68333;
    text-align: center;
    color: #fff;
}
.logo {
    position: absolute;
    bottom: 6.25rem;
    right: 2rem;
}
@media only screen and (max-width:749px) {
    body {
        font-size: 1.125em;
    }
    #wrapper {
        border: none;
        margin: 0 auto;
        height: auto;
        padding: 1rem;
    }
    .logo {
        position: static;
        display: flex;
        justify-content: center;
        padding-bottom: 1rem;
    }
    .small {
        width: auto;
    }
    li br {
        display: none;
    }
    p :is(span, a) {
        display: inline-block;
    }
}
@media only screen and (max-width:749px) {
    body {
        font-size: 1em;
    }
    h1 {
        font-size: 1.4em;
    }
}