@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
    font-size: 16px;
}

body {
    color: #000;
    font-family: "Arial", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

#wrapper {
    position: relative;
    max-width: 50rem;
    margin: 1rem auto;
    overflow: hidden;
    background: #fff;
    border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: inherit;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1 {
    font-size: 1.7rem;
    color: #fff;
    text-align: center;
    background-color: #AE9A64;
    margin: 0 -2rem 1rem;
    padding: 0.75rem 1rem;
}

h2 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

p {
    margin: 0.2rem 0 1rem;
}

ul {
    list-style-type: none;
    margin: 0 0 1.25rem 0;
}

ul li {
    padding-left: 2.5rem;
    position: relative;
}

ul li:before {
    content: "\2022";
    float: left;
    margin-left: -2.5rem;
    font-size: 1rem;
    line-height: 1.2;
}

.checkmark {
    margin: 0.5rem 0 1rem 0;
    list-style-type: none;
}

.checkmark li {
    background: url(../images/checkmark.png) no-repeat left top;
    padding-left: 2.5rem;
}

.checkmark li:before {
    content: none;
}

article {
    padding: 0 2rem;
}

.center {
    text-align: center;
}

p:first-of-type {
    margin: 0.2rem;
}

footer {
    padding: 1rem 2rem;
    background-color: #AE9A64;
}

footer p {
    color: #fff;
    text-align: center;
}

footer p span {
    font-size: 1.2rem;
    font-weight: 700;
}

footer p:last-of-type {
    margin: 0;
}

@media only screen and (max-width: 49.938rem) {
    #wrapper {
        border: none;
        margin: 0 auto;
    }

    article {
        padding: 0 1rem;
    }

    footer {
        padding: 1rem;
    }

    p,
    ul {
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        -ms-hyphens: auto;
        hyphens: auto;
    }
}

@media only screen and (max-width: 30rem) {

    ul li {
        padding-left: 1rem;
    }
    
    ul li:before {
        margin-left: -1rem;
    }
    
    .checkmark {
        margin: 0.5rem 0 1rem 0;
        list-style-type: none;
    }
    
    .checkmark li {
        background: url(../images/checkmark.png) no-repeat left top;
        padding-left: 1.5rem;
    }
    
    .checkmark li:before {
        content: none;
    }
}
