html {
    font-size: 20px;
    grid-template-columns: 1fr minmax(10em, 36em) 1fr;
    background-color: #086;
    background-image: url(images/many-gears.svg);
    background-repeat: repeat;
    background-size: 256px;
    display: grid;
}
body {
    background-color: #eed;
    color: #224;
    margin: 0 min(3vw, 1em);
    padding-bottom: 2em;
    grid-column: 2;
    font-weight: 400;
    line-height: 1.5;
    font-family: serif;
    box-shadow: 0 0 2em 0.25em rgba(0,0,0,0.125);
}
nav {
    font-family: sans-serif;
    font-size: 70%;
    font-weight: 400;
}
nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    background-color: #334;
    color: #eed;
}
nav ul li {
    margin: 0;
    padding: 0.5em 1em;
}
nav a {
    text-decoration: none;
    color: inherit;
}
header hgroup, article {
    padding: 0 min(6vw, 3em);
}
header hgroup {
    margin-top: 2em;
    display: grid;
    grid-template-columns: auto 1fr;
}
header hgroup > * {
    grid-column: 2;
    margin: 0 0 0.25em 0;
}
header hgroup > img {
    grid-column: 1;
    grid-row: 1 / 999;
    width: 128px;
    margin-right: 0.5em;
    float: left;
}
header hgroup > time {
    margin-top: 1.5em;
    margin-bottom: 0;
    font-family: sans-serif;
    font-size: 70%;
    font-weight: 200;
}
img {
    width: 100%;
}
h1 {
    margin-top: 1em;
    font-family: sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

hr {
    border: none;
    border-top: 0.5px solid #224;
    margin: 3em 0;
}

article img {
    box-shadow: 0 0.25em 1em 0 rgba(0.4,0,0,0.15);
}

.red-truth {
    color: #ff0000;
    font-weight: bold;
    font-family: sans-serif;
    text-shadow: 1px 1px 1px black;
}

.blue-truth {
    color: #0088bb;
    /* color: #5decff; Doesn't work on a light background. */
    font-weight: bold;
    font-family: sans-serif;
    text-shadow: 1px 1px 1px black;
}

.subhead {
    font-style: italic;
    font-size: 120%;
    font-family: sans-serif;
}

#zoom_holder {
    z-index: 100;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    position: fixed;
    grid-template-columns: 0.5em minmax(3em, 1fr) 0.5em;
    grid-template-rows: 0.5em minmax(3em, 1fr) 0.5em;
    display: grid;

}

#zoom_holder > * {
    grid-column:2;
    grid-row:2;
    width:100%;
    height:100%;
    object-fit: contain;
/*box-shadow: 0 0 2em 0.25em rgba(0,0,0,0.25);*/
    filter: drop-shadow(0 0 2em rgba(0,0,0,0.25));
}
