:root {
    --main-bg-color: #ffe8ae;
    --code-bg-color: #31363b;
    --code-text-color: #06ff55;
}

body {
    margin: 5px 5%;
    background-color: var(--main-bg-color);
    font-size: 1em;
}

blockquote {
    width: 50%;
    max-width: 800px;
    text-align: justify;
    text-justify: inter-word;
}

cite {
    margin: 0px 0px 0px 50px;
    align: right;
}

p {
    background-color: var(--main-bg-color);
    color: black;
    max-width: 1200px;
}

p.fooclass {
    font-style: italic;
}

img {
    width: 80%;
    max-height: 600px;
    max-width: 1200px;
}

ul {
    width: 75%;
    max-width: 900px;
}

ol {
    width: 75%;
    max-width: 900px;
}

table {
    margin: 0% 10%;
    max-width: 90%;
    border-collapse: collapse;
    border-spacing: 20px 5px;
    border: 5px solid black;
}
td {
    border: 5px solid #333;
}

thead,
tfoot {
    background-color: #333;
    color: #fff;
}

hr {
    border: none;
    border-top: 3px double #088;
    color: #088;
    overflow: visible;
    height: 5px;
    text-align: center;
}

article {
    width: 80%;
    font-size: normal;
}

.technical {
    margin: 5% 10%;
    width: 80%;
    font-size: 1.3em;
    font-family: Helvetica;
    line-height: 1.6em;
}

h1.technical {
    text-align: center;
}

.float-left {
    float: left;
    align-content: left;
}

.float-right {
    float: right;
    align-content: right;
}

figure.technical {
    width: 40%;
    font-size: 1.0em;
}

figcaption {
    width: 80%;
}

.table-of-contents {
    display: table;
    font-size: 1.1em;
    min-width: 200px;
    max-width: 80%;
    padding: 20px;
    margin-bottom: 1em;
}

li.table-of-contents {
    list-style: outside none none !important;
}

.toc-title {
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
    margin-right: 40%;
}

.headline {
    font-size: 1.5em;
    text-align: center;
}

.byline {
    line-height: 1.0em;
}

.author {
    font-variant: small-caps;
    text-align: center;
    font-size: 1.2em;
    font-weight: 500;
}


.code-block {
    white-space: pre-wrap;
    display: block;
    background-color: var(--code-bg-color);
    color: var(--code-text-color);
    margin: 1% 5% 1% 5%;
    line-height: 1.5em;
    padding: 0.5em 0.0em 0.5em 1.0em;
    max-width: 60em;
    align-content: center;
}

