
body {
    font-family: Avenir, serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.content {
    display: grid;
    grid-template-columns: 192px var(--content-width) 192px;
    grid-column-gap: 24px;
    -moz-column-gap: 24px;
    column-gap: 24px;
    align-items: flex-start;
    justify-content: center;
}

@media only screen and (max-width: 1080px) {
    .back {
        visibility: hidden;
    }
}

.back a {
    text-decoration: none;
    color: black;
}

.back:hover {
    cursor: pointer;
}

main {
    position: relative;
    padding: var(--page-top) 0;
    margin: 0 auto;
    max-width: var(--page-width);
}

.article-meta {
    display: flex;
    justify-content: space-between;
    color: dimgray;
}

h1, h2, h3 {
    margin-bottom: 0;
}

h1 {
    font-size: 2rem;
    line-height: 2rem;
}

h2 {
    font-size: 1.5rem;
    margin-top: 3rem;
    line-height: 2rem;
}

code {
    border-radius: 10px;
}

canvas {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    width: min(360px, 100%);
}

:root {
    --content-width: min(640px, 100%);
    --page-top: 100px;
    --page-width: 100vw;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin: 1rem;
}


.gallery div p{
    text-align: center;
}

.lone-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.pixelated {
    image-rendering: pixelated;
}

.datatable {
    margin-left: auto;
    margin-right: auto;
}

.datatable th, .datatable td {
    padding: .2em;
    text-align: left;
}
.datatable th {
    background-color: #f2f2f2;
}

[data-table-theme*=zebra] tbody tr:nth-of-type(odd) {
    background: rgba(0,0,0,.05);
}

.article {
    display: flex;
    align-items: center;
    border-top: 1px lightgray solid;
}

.last.article {
    border-bottom: 1px lightgray solid;
}

.article_description {
    margin: 0 1rem;
    padding: 1rem;
}

.article_description h2 {
    margin-top: 0;
    text-decoration-line: underline;
    text-decoration-thickness: .1em;
    text-underline-offset: 2px;
    text-decoration-color: dimgray;
}

.thumbnail {
    max-width: 128px;
    height: auto;
    margin-left: auto;
    margin-right: 1rem;
}

.heading {
    margin-bottom: 2rem;
}

.article-area {
    color: black;
    text-decoration: none;
}

.blog-link {
    color: black;
    text-decoration-line: underline;
    text-decoration-thickness: .08em;
    text-underline-offset: 2px;
    text-decoration-color: dimgray;
}