/* === Basic Reset / Reboot === */

/* Box-sizing everywhere */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin/padding */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, figure, blockquote, pre {
    margin: 0;
    padding: 0;
}

/* Body defaults */
body {
    font-family: "Georgia", serif;
    line-height: 1.5;
    font-size: 1rem;
    color: #111;
    background-color: #fff;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Links */
a {
    color: #111;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Tables */
table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1em;
}

th, td {
    border: 1px solid #ccc;
    padding: 0.25em 0.5em;
    text-align: left;
}

/* Code / pre */
code, pre {
    font-family: monospace;
    background-color: #f8f8f8;
    padding: 0.1em 0.25em;
    border-radius: 3px;
}

/* Blockquotes */
blockquote {
    margin: 0 0 1em 0;
    padding-left: 1em;
    border-left: 3px solid #ccc;
    color: #555;
}
