﻿* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

html {
    min-height: 100%;
}

#wrapper {
    max-width: 616px;
    margin: 12px auto;
    border: 3px solid #000;
    background: #fff;
    overflow: hidden;
    color: #200e00;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 19px;
    font-weight: 400;
}

article {
    padding: 10px 15px 1px;
}

footer {
    padding: 0 15px 15px;
}

h1 {
    margin: 0 0 5px;
    font-size: 24px;
    line-height: 28px;
    font-weight: 700;
    color: #40ae49;
}

h2 {
    font-size: 15px;
    line-height: 20px;
    font-weight: 700;
}

a {
    color: #200e00;
    text-decoration: none;
}

ul {
    padding: 0 0 6px;
    list-style: none;
}

ul li {
    padding-left: 20px;
    position: relative;
}

li:before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #000;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 7px;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

@media all and (max-width: 615px) {
    #wrapper {
        margin: 0;
        border: none;
    }
}