:root {
    --red: #8b4230;
    --red-lighter: #be6d59;
    --background: #f1efe7;
    --background-light: #f0efec;
    --background-dark: #cfccc2;
    --dark-grey: #343131;
    --grey: rgba(52, 49, 49, 0.2);
    --heading-margin-bottom: 0.75rem;
    --heading-margin-top: 1.5rem;
}

@font-face {
    font-family: "Augusta";
    src: url("Augusta.ttf") format("truetype"); /* IE6-IE8 */
}

hr {
    border-color: var(--grey);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--red);
    font-family: "Augusta";
    margin-bottom: var(--heading-margin-bottom);
    margin-top: var(--heading-margin-top);
}

h1 {
    font-size: 250%;
}

h2 {
    font-size: 200%;
}

h3 {
    font-size: 160%;
}

h4 {
    font-size: 135%;
    color: black;
}

h5 {
    font-size: 110%;
    color: black;
}

h6 {
    font-size: 100%;
    color: black;
}

p {
    margin-bottom: var(--heading-margin-bottom);

}

a:hover {
    color: var(--red);
}

.wy-nav-top {
    background-color: var(--red);
}

.wy-side-nav-search {
    background-color: var(--red);
}

.wy-nav-content-wrap,
.wy-nav-content,
.wy-menu-vertical li.on a,
.wy-menu-vertical li.current > a {
    background-color: var(--background);
}

td,
th {
    border-color: var(--grey) !important;
    border-collapse: collapse;
    padding: 6px 8px 8px 8px;
}

th {
    text-align: left;
    font-family: "Augusta";
    font-size: 130%;
}

table {
    margin-bottom: 2rem;
}

.wy-menu-vertical li.toctree-l2.current > a,
.wy-menu-vertical li.toctree-l2.current li.toctree-l3 > a {
    background-color: var(--background-dark);
}

.wy-menu-vertical li.current {
    background-color: var(--background-light);
}

.btn-neutral {
    background-color: var(--red) !important;
    color: var(--background-light) !important;
}

.btn-neutral:visited {
        color: var(--background-light) !important;
}

.btn-neutral:hover {
    background-color: var(--dark-grey) !important;
    color: var(--background-light);
}

footer {
    margin-top: 3rem;
}

.wy-side-nav-search input[type="text"] {
    border-radius: 3px;
}