@charset "utf-8";
/* vim: set noet sw=4 ts=4 sts=4: */
/*
  Simple stylesheet
  Author: Tom Most <http://freecog.net/>
  Created: August 27, 2011
  Updated:
    September 26, 2016
    August 4, 2024
*/

/*
  Color scheme: http://colorschemedesigner.com/#3P52tqirGFwtv
*/

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* End white space reset */


:root {
    --text-color: black;
    --background-color: white;
    --link-color: #294295;
    --link-focus-color: #071850;
    --visited-color: #821c91;
    --visited-focus-color: #126206;
    --active-color: #35b621;
}

html {
    background: var(--background-color);
    color: var(--text-color);
}
body {
    /* https://www.smashingmagazine.com/2015/11/using-system-ui-fonts-practical-guide/#details-of-approach-b */
    /* Reordered to favor Fira Sans, because it is pretty. */
    font-family: "Fira Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Droid Sans", "Helvetica Neue", sans-serif;
    line-height: 1.4;
    padding: 0 5px 0 5px;
}
#wrapper {
    margin: 0 auto;
    max-width: 700px;
}

p {
    margin: 1em 0;
}

blockquote {
    margin: 3em 2em;
}

em, var, samp, i {
    font-style: italic;
}

strong, b {
    font-weight: bold;
}

span.pre /*docutils*/ {
    white-space: pre;
}

code, kbd, tt.literal /*docutils*/ {
    font-family: "Inconsolata", "Bitstream Vera Sans Mono", monospace;
}

small {
    font-size: .75rem;
}

pre {
    font-family: "Inconsolata", "Bitstream Vera Sans Mono", monospace;
    margin: 1em 0;
    padding: 0;
    line-height: 1.6;
}

pre.code code {
    font-family: "Inconsolata", "Bitstream Vera Sans Mono", monospace;
}

h1, h2, h3 {
}

h1,
div.document h1.title /*docutils*/ {
    font-size: 3rem;
    line-height: 1.2;
    margin-top: .3em;
    margin-bottom: .35em; /* = top margin on h2 */
}

h2,
div.document div.section h1 /*docutils*/ {
    font-size: 2rem;
    line-height: 1.5;
    margin-top: 1.5em;
    /* Override generic h1 for docutils */
    border-bottom: 0;
    padding-left: 0;
    margin-bottom: 0;
}

h3,
div.document h2 /*docutils*/,
.admonition-title {
    font-size: 1.5rem;
    margin-top: .7em;
}

ul, ol {
    margin: 1rem 0;
}
li {
    margin-left: 2rem;
}
ul li {
    list-style: square;
}

table {
    border-spacing: 0;
}
th, td {
    padding: 0 .4rem;
}
th {
    text-align: left;
    font-weight: bold;
}
tbody {
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

div.note {
    padding: 0 1em;
    margin: 2em 2em;
    border-top: 1px solid gray;
    border-bottom: 1px solid gray;
}

.admonition-title {
    /* See h3 */
}


#masthead {
    text-align: center;
}
#nav {
    text-align: center;
}
#nav p {
    display: inline;
    padding: 0 .5em;
    margin: 0;
}

#nav :link,
#nav :visited {
    text-decoration: none;
}
#nav #asterism :link,
#nav #asterism :visited {
    color: inherit;
}

#doc-wrap {
    /* margin: 0 3em; */
}

#foot {
    color: gray;
    text-align: center;
    padding: 3em;
    font-size: .8rem;
    clear: both;
}

/* links */
:link {
    text-decoration: underline;
    color: var(--link-color);
}
:visited {
    text-decoration: underline;
    color: var(--visited-color);
}
:link:active,
:visited:active {
    color: var(--active-color);
}
:link:hover,
:link:focus {
    color: var(--link-focus-color);
}
:visited:hover,
:visited:focus {
    color: var(--visited-focus-color);
}

:link img,
:visited img {
    border: 0;
}


/* general use stuff for #document contents */
.floatright {
    clear: right;
    float: right;
    margin-left: 1.1em;
    margin-top: .8em;
}

.floatleft {
    clear: left;
    float: left;
    margin-right: 1.1em;
    margin-top: .8em;
}

.blockimage {
    text-align: center;
    padding-top: 1em;
    text-indent: 0;
}



div.project {
    padding-left: 80px;
    position: relative;
    margin: 1.5em 0;
}

div.project img {
    position: absolute;
    padding: 0;
    top: 0.5em;
    left: 20px;
}
