/* Everything here is applied to every page that I'm hosting */

/* forgive me god */
:root {
    --bg: #ded7cd;
    --fg: #96684a;
}

* {
    font-size: 13pt;
    font-weight: 400;
}

body {
    background-color: var(--bg);
    color: var(--fg);
    font-family: 'courier new';
    margin: 1em;
}

/* Block */
h1 {
    background: var(--fg);
    color: var(--bg);
    display: block;
    font-weight: 700;
}

/* No Block */
h2 {
    font-weight: 700;
    white-space: nowrap;
}

/* Links */
a {
    background: var(--fg);
    color: var(--bg);
    font-weight: 700;
    padding-right: .25em;
}

/* Boxes */
table {
    border-collapse: collapse;
    width: 100%;
}

td {
    border: 6px double var(--fg);
    padding: 10px;
}

/* Horizontal Rule */
hr {
    height: 2px;
    border-width: 0;
    color: var(--fg);
    background-color: var(--fg);
}