@font-face {
    font-family: 'Geist';
    src: url('../font/Geist-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Geist';
    src: url('../font/Geist-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Projekt Blackbird';
    src: url('../font/PROJEKTBlackbird.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-kerning: normal;
}

@font-face {
    font-family: 'Oxanium';
    src: url('../font/Oxanium-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Oxanium';
    src: url('../font/Oxanium-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu Mono';
    src: url('../font/UbuntuMono-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Ubuntu Mono';
    src: url('../font/UbuntuMono-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --background: #AFA48A;
    --panelheader: #D9D9D9;
    --panel: #D9D9D9;
    --textLight: #000000;
    --tableBorder: #000000;
    --effect: #000000;
    --effectParam: #000000;
    --listOdd: #AFA48A;
    --listEven: #AFA48A;
    --link: #000000;
    --button: #D9D9D9;
    --sidebarWidth: 280px;
}

body {
    background: var(--background);
    color: #000000;
    font: 16px/135% 'Geist', sans-serif;
    font-style: normal;
    font-weight: normal;
    width: 100%;
    margin: 0;

    line-height: 1.35em;
    display: inline-block;
}

aside {
    height: 100%;
    /* Full-height: remove this if you want "auto" height */
    width: var(--sidebarWidth);
    /* Set the width of the sidebar */
    position: fixed;
    /* Fixed Sidebar (stay in place on scroll) */
    z-index: 1;
    /* Stay on top */
    top: 0;
    /* Stay at the top */
    left: 0;
    background-color: #000000;
    overflow-x: hidden;
    /* Disable horizontal scroll */
    padding-top: 10px;
}

article {
    /* Same as the width of the sidebar */
    /* padding: 20px 0px 20px 50px; */
    padding-top: 20px;
    margin-left: var(--sidebarWidth);
    padding-left: 50px;
    padding-right: 30px;
    max-width: 1200px;
    min-height: 100%;
    line-height: 1.5em;
    /* max-width: 100%; */
    /* margin-right: 20px; */
}

img {
    size: 100;
    filter: drop-shadow(0 0 5px #14182e7a);
    margin: 0 0 15px 0;
}

td>img {
    margin: 0;
}

td:has(> img) {
    width: 104px;
}

ul {
    line-height: 1.5em;
}

h1 {
    font-family: 'Projekt Blackbird', sans-serif;
    text-transform: uppercase;
    font-size: 2.75em;
    color: #000000;
    margin: 0px;
    line-height: 1;
    padding-top: 20px;
    padding-bottom: 10px;

}

h2 {
    font-family: 'Projekt Blackbird', sans-serif;
    font-size: 1.5em;
    font-kerning: none;
    letter-spacing: 0.01em;
}

h3,
h5,
h6 {
    font-family: 'Projekt Blackbird', sans-serif;
    font-kerning: none;
    letter-spacing: 0.01em;
}

aside>h1 {
    font-family: 'Projekt Blackbird', sans-serif;
    text-transform: none;
    font-size: 2em;
    line-height: 1.2;
    margin-left: 0.2em;
    padding-top: 10px;
    padding-bottom: 0px;
    color: var(--button);
    font-kerning: none;
    letter-spacing: 0.01em;
}

ul.sideNav {
    list-style-type: none;
    padding-left: 0px;
}

ul.sideNav h2 {
    color: #D9D9D9;
    font-size: 1.1em;
    margin-bottom: 2px;
}

ul.sideNav li {
    width: calc(100%);
    padding: 2px 20px;
}

ul.sideNav a {
    color: #D9D9D9;
    text-decoration: none;
}

ul.sideNav a li:hover {
    background-color: #363e6d;
    color: white;
    font-size: 1em;
}

ul.sideNav a.selected li {
    color: #000000;
    background-color: #D3FC51;
    text-decoration: none;
    font-weight: bold;
}

h4 {
    font-family: 'Projekt Blackbird', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1.2em;
    margin: 0px;
    padding-top: 20px;
    padding-bottom: 10px;
}

p {
    /* color: var(--textLight); */
    font-size: 1em;
    margin: 0 0 15px 0;
}

hr {
    border-top: 1px solid;
    color: #000000;
}

table {
    width: 100%;
    border: 1px solid;
    border-color: var(--tableBorder);
    border-collapse: collapse;
}

tr {
    border: 1px solid;
    border-color: var(--tableBorder);
}

td {
    border-width: 1px;
    border-style: solid;
    padding: 4px 8px;
}

th {
    text-align: left;
    padding-left: 7px;
    background: var(--panel);
}

.fx {
    font-weight: bold;
}

.parameterHint {
    font-style: italic;
}

.shortcut {
    font-family: 'Oxanium', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    border-color: var(--tableBorder);
    border-width: 2px;
    border-style: solid;
    color: #000000;
    border-radius: 4px;
    padding: 1px 4px;
    /* background-color: var(--tableBorder); */
}

article a {
    color: var(--link);
    text-decoration: underline;
}

article a:hover {
    color: var(--effect);
    text-decoration: underline;
}

footer {
    font-size: 0.75em;
    font-style: italic;
    margin-top: 30px;
    margin-bottom: 10px;
    color: #000000;
}

footer a {
    color: #000000;
}

/* page specific rules */
#screen-map+p>img {
    width: 60%;
}

/* rule for div child of body for front page */
body>div#cover {
    width: 100%;
    text-align: center;
    margin: 5%;
}

.minikeys {
    border: 1px #ccc solid;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    margin: 0;
    padding: 0 5px;
    text-transform: uppercase;
    font-family: monospace;
}

.minikeys img {
    margin: 0;
    padding: 0;
    filter: none;
    vertical-align: middle;
}

code,
pre {
    font-family: 'Ubuntu Mono', monospace;
}