﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 750px;
    margin: 12px auto;
    border: 3px solid #ed1c24;
    background: #fff;
    overflow: hidden;
    color: #200e00;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 18px;
    font-weight: 400;
    position: relative;
}

header {
    padding: 20px 20px 30px;
    background: #ed1c24;
}

article {
    padding: 20px 55px;
}

footer {
    position: absolute;
    z-index: 3;
    right: 55px;
    bottom: 34px;
}

p {
    margin: 0 0 12px;
}

h1 {
    margin: 16px 0;
    font-size: 28px;
    line-height: 32px;
    font-weight: 700;
    color: #ed1c24;
}

h2 {
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
}

a {
    color: #200e00;
    text-decoration: none;
}

ul {
    list-style: none;
}

ul li {
    padding-left: 14px;
    position: relative;
    margin-bottom: 10px;
}

li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 6px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 749px) {
    #wrapper {
        margin: 0;
        border: none;
    }

    header {
        padding: 16px;
    }

    article {
        padding: 16px;
    }

    footer {
        position: static;
        padding: 0 16px 16px;
    }

    br {
        display: none;
    }
}