* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Asap', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    background-color: #eee8e3;
}

a {
    text-decoration: none;
    color: #337ab7;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

button,
input {
    outline: none;
}

button {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

button:focus {
    outline: 2px solid #337ab7;
}

input {
    border: 1px solid #ccc;
    padding: 8px;
}

input:focus {
    outline: 2px solid #337ab7;
    border-color: #337ab7;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    margin-bottom: .5rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    padding-left: 1rem;
    text-indent: -.7rem;
}

ul li:before {
    content: '\2022';
    display: inline-block;
    width: 1rem;
    margin-left: -.7rem;
}

table {
    border-collapse: collapse;
    border: 1px solid #ddd;
}

th, td {
    padding: 8px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    text-align: center;
}

blockquote {
    margin: 1rem 0;
    padding: .5rem 1rem;
    border-left: 3px solid #337ab7;
}

blockquote p:last-child {
    margin-bottom: 0;
}

code, pre {
    font-family: 'Roboto Mono', monospace;
}

code {
    padding: .2rem .5rem;
    border-radius: .25rem;
    background-color: #f5f5f5;
}

pre {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    overflow: auto;
}

pre code {
    padding: 0;
    border-radius: 0;
}
