* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: url('../fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-regular.woff2') format('woff2'), url('../fonts/roboto-v30-latin-regular.woff') format('woff'), url('../fonts/roboto-v30-latin-regular.ttf') format('truetype'), url('../fonts/roboto-v30-latin-regular.svg#Roboto') format('svg');
}

@font-face {
    font-display: swap;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: url('../fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-v30-latin-700.woff2') format('woff2'), url('../fonts/roboto-v30-latin-700.woff') format('woff'), url('../fonts/roboto-v30-latin-700.ttf') format('truetype'), url('../fonts/roboto-v30-latin-700.svg#Roboto') format('svg');
}

html {
    min-height: 100%;
}

body {
    color: #000;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 400;
}

#wrapper {
    max-width: 800px;
    margin: 1rem auto;
    border: 3px solid #9a5e37;
    padding: 2.1875rem 2.875rem 3rem;
    background: #fff url('../images/background.jpg') no-repeat 0 bottom;
}

header {
    padding: 0 0 1.25rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

p {
    margin: 0 0 1rem;
}

:is(strong, h1, h2, h3) {
    font-weight: 700;
}

h1 {
    margin: 0 0 2rem;
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
    padding-top: 20px;
}

h1 small {
    display: block;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 400;
}

h2 {
    font-size: 1.0625rem;
    line-height: 1.3125rem;
}

h3 {
    margin: 2rem 0 0;
    font-size: 1.875rem;
    line-height: 2.375rem;
    text-align: center;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

ul {
    padding: 4px 0 2.9375rem;
    list-style: none;
}

ul li {
    padding-left: 0.9375rem;
    position: relative;
}

li:before {
    content: "";
    width: 0.3125rem;
    height: 0.125rem;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0.605rem;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

.center {
    text-align: center;
}

h3 small {
    display: block;
    font-size: 1.25rem;
    line-height: 1.5rem;
}

.button {
    display: flex;
    margin: 25px 0;
    justify-content: center;
}

.button a {
    display: inline-block;
    padding: 10px 1rem;
    background: #91582F;
    color: #fff !important;
    text-align: center;
    border-radius: 5px;
}

.button a:hover {
    opacity: 0.9;
}

@media all and (max-width: 799px) {
    #wrapper {
        margin: 0;
        padding: 1rem;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
        text-wrap: pretty
    }

    h3 {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }

    h3 small {
        font-size: 1rem;
        line-height: 1.25rem;
    }

    br {
        display: none;
    }
}