body {
    font-family: var(--text-font-family);
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--link-color);
}

a:hover {
    text-decoration: underline;
}

table {
    border-collapse: collapse;
    border: 1px solid #aaa;
}

table td, table th {
    padding: 3px;
}

table thead tr {
    font-weight: bolder;
}

table tbody tr {
    border-bottom: 1px solid #aaa;
}

:not(pre) > code {
    border-radius: 4px;
    padding: 2px 4px;
    color: #b6e9cb;
}

:not(pre) > code:hover {
    background-color: #283629;
}