:root {
    font-size: 16px;
}

* {
    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: #58585a;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 400;
}

#wrapper {
    max-width: 348px;
    margin: 1rem auto;
    border: 5px solid #696d71;
    background: #fcf1bd;
}

header {
    background: #6d6e71 url('../images/background.jpg') no-repeat left bottom;
    padding: 0.375rem 0.625rem;
}

header p {
    color: #fff;
}

article {
    padding: 0.25rem 0.625rem 0.0625rem;
}

footer {
    padding: 0 0.625rem 0.625rem;
}

strong {
    font-weight: 700;
}

h1 {
    color: #fff;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.375rem;
}

h2 {
    margin: 0 0 0.375rem;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.25rem;
}

h3 {
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.125rem;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #58585a;
    text-decoration: none;
}

ul {
    padding: 0;
    list-style: none;
}

ul li {
    padding-left: 1.3125rem;
    position: relative;
    margin-bottom: 0.375rem;
}

li:before {
    content: "";
    width: 0.4375rem;
    height: 0.4375rem;
    border-radius: 50%;
    background: #58585a;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0.4375rem;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 347px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    :is(ul, p) {
        hyphens: auto;
    }

    header {
        padding: 0.375rem 1rem;
    }

    article {
        padding: 0.25rem 1rem 0.0625rem;
    }

    footer {
        padding: 0 1rem 0.625rem;
    }

    :is(a:link, a:visited, a:hover, a:active) {
        white-space: nowrap;
    }
}