@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/roboto-v30-latin-regular.eot');
    src: local(''), 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-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/roboto-v30-latin-700.eot');
    src: local(''), 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');
}

:root {
    font-size: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    line-height: 20px;
    font-size: 16px;
    color: #231F20;
    font-weight: 400;
}

#wrapper {
    margin: 1rem auto;
    border: 2px #231F20 solid;
    max-width: 640px;
    padding: 16px 16px 0;
    background-color: #fff;
    overflow: hidden;
}

header {
    margin: 0 0 10px;
}

:is(article, footer) {
    padding: 0;
    position: relative;
}

article img {
    position: absolute;
    bottom: -26px;
    right: 0;
}

p {
    padding-bottom: 10px;
}

:is(h1, h2, strong) {
    font-weight: 700;
}

h1 {
    margin: 0 0 10px;
    font-size: 25px;
    line-height: 31px;
    background: #00b0f0;
    color: #fff;
    text-align: center;
    padding: 11px 15px;
}

h1 span {
    display: block;
    margin: 16px 0;
}

h2 {
    font-size: 16px;
    line-height: 20px;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: #231F20;
    text-decoration: none;
    white-space: nowrap;
}

img {
    max-width: 100%;
}

ul {
    margin: 0 0 15px;
    list-style: none;
}

ul li {
    padding-left: 12px;
}

ul li:before {
    content: "\2022";
    float: left;
    font-size: 18px;
    text-indent: -12px;
    font-family: Arial, sans-serif;
    margin-top: -1px;
}

@media only screen and (max-width:633px) {
    #wrapper {
        border: none;
        margin: 0;
        padding: 1rem;
    }

    span {
        white-space: nowrap;
    }

    :is(h1, h2, p, ul) {
        text-wrap: pretty;
        hyphens: auto;
    }

    article br {
        display: none;
    }

    article img {
        position: static;
    }
}