:root {
    --white: #EBE0EB;
    --black: #121212;
}
*:not(code) {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color:var(--white);
    line-height: 1.5em;
}
:not(pre) > code {
    background-color: black;
    border-radius: 0.25rem;
    padding: 0.125rem 0.25rem;
}
pre {
    background-color: black;
}
body {
    background-color: var(--black);
    padding-left: 5px;
    padding-right: 5px;
}
img {max-width: 100%;}
@media (width > 800px) {
    body {
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}
ul {padding-inline-start: 30px;}
code {font-size: 1.2em;}
pre {white-space: pre-wrap;}
iframe {aspect-ratio: 16/9;}

/* Table */
table {
    border-collapse: collapse;
}
table tbody tr:nth-child(even) {
    background-color: black;
}
table td, table th {
    text-align: center;
    padding: 0.25em;
    border-right: solid 1px var(--white);
    border-bottom: solid 1px var(--white);
}
table thead th {
    border-bottom: solid 3px var(--white);;
}
table td:last-child, table thead th:last-child {
    border-right: none;
}
table tbody tr:last-child td, table tbody tr:last-child th {
    border-bottom: none;
}
span.no-bold {font-weight: normal;}