* { margin: 0; padding: 0; box-sizing: border-box;

  /* Color scheme */

  --textcolor: #121212;
  --bgcolor: #fff;
  --highlight: #121212;

  /* Syntax highlighting */
  --c-kw: #0033b3;
  --c-cm: #3d7a00;
  --c-fn: #795e26;

}

@media (prefers-color-scheme: dark) {
  * {
    --textcolor: #dadada;
    --bgcolor: #141414;
    --highlight: #dadada;
    --c-kw: #569cd6;
    --c-cm: #6a9955;
    --c-fn: #dcdcaa;
  }
}

.c-kw { color: var(--c-kw); }
.c-cm { color: var(--c-cm); }
.c-fn { color: var(--c-fn); }

pre.c-block {
  width: auto;
  max-width: 80ch;
  margin: 1em 0;
  white-space: pre-wrap;
}

table.c-block {
  font-family: ui-monospace, SF Mono, Menlo, Monaco, Andale Mono, monospace;
  font-size: .85em;
  border-spacing: 0;
  margin: 1em 0;
  background: rgba(128, 128, 128, .07);
}

table.c-block td {
  padding: 0;
  white-space: pre-wrap;
  vertical-align: top;
}

table.c-block .ln {
  padding: 0 1.5em 0 1em;
  color: rgba(128, 128, 128, .5);
  text-align: right;
  user-select: none;
  white-space: nowrap;
  width: 1%;
}

table.c-block .cd {
  padding: 0 1em 0 0;
}

table.c-block.no-ln .cd {
  padding-left: 1em;
}

table.c-block tr:first-child .ln,
table.c-block tr:first-child .cd { padding-top: .7em; }

table.c-block tr:last-child .ln,
table.c-block tr:last-child .cd { padding-bottom: .7em; }

body {
  font-size: 18px;
  font-family: "Times New Roman", Times, serif;
  line-height: 1.45;
  color: var(--textcolor);
  background: var(--bgcolor);
  position: relative;
  max-width: 64em;  /* remove this for a full-width layout */
  margin: 0 auto;  /* centers the layout */
}

@media only screen and (max-width: 680px) { /* smaller screens */
  body {
    font-size: 16px;
  }
}

/* ------- Sections ------- */

section {
  padding: calc(6em + 5vw) 5vw 8vw 5vw;
  /* !! Everything below is needed !! */
  display: none;
  position: absolute;
  top: 0;
  min-height: 100vh;
  width: 100%;
  background: var(--bgcolor);
}

section:target { /* Show section */
  display: block;
}

section#home { /* Show #home by default */
  display: block;
}

section#creative { /* Standalone creative projects page */
  display: block;
}

/* ------- Header ------- */

header {
  padding: 5vw 5vw 0 5vw;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

header h1 {
  font-size: 1em;
  flex: 1;
  white-space: nowrap;
  padding: 0 20vw .5em 0;
}

nav a:not(:last-of-type) {
  margin-right: 1.5vw;
}

/* ------- General ------- */

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

a:hover {
  opacity: .6;
}

h2, h3, h4 {
  font-size: 1em;
  font-weight: 600;
  margin: 1.6em 0 .6em 0;
}

p, ul, ol, article {
  max-width: 80ch;
  margin-bottom: .6em;
}

ul {
  list-style-type: none;
}

ul li::marker {
  content: "\2022   ";
}

li {
  margin-bottom: .2em;
}

ul, ol {
  padding-left: 2ch;
}

b, strong {
  font-weight: 600;
}

small {
  font-size: .85em;
}

hr {
  height: 1px;
  border: 0;
  background: currentColor;
  opacity: .1;
  margin: 1.2em 0;
}

abbr {
  text-decoration: none;
}

abbr[title]:hover {
  opacity: .7;
  cursor: help;
}

blockquote {
  padding-left: 2ch;
  opacity: .7;
  margin-bottom: .6em;
  position: relative;
}

blockquote:before {
  content: "";
  position:absolute;
  left: 0;
  top: .3em;
  bottom: .3em;
  background: currentColor;
  width: 1px;
  opacity: .2;
}

img, svg, video, audio {
  display: block;
  max-width: 100%;
  height: auto;
  fill: currentColor;
}
  
code, pre, textarea {
  font-family: ui-monospace, SF Mono, Menlo, Monaco, Andale Mono, monospace;
  font-size: 1em;
  opacity: .7;
}

a code {
  opacity:1;
}

textarea { /* for code samples */
  font-size: .9em;
  color: inherit;
  line-height:inherit;
  padding:.6em .9em;
  margin: .8em 0 1em 0;
  position: relative;
  display: block;
  width: 100%;
  white-space: pre;
  border:0;
  border-radius: 4px;
  background:rgba(255,255,100,.075);
  box-shadow: inset 1px 1px 0 rgba(0,0,0,.2), inset -1px -1px 0 rgba(0,0,0,.04) ;
}

pre {
  font-size: .85em;
  line-height: inherit;
  padding: 1em 5vw;
  width: 100vw;
  margin: 1em calc(50% - 50vw);
  display: block;
  white-space: pre-wrap;
  opacity: 1;
  background: rgba(128, 128, 128, .07);
}

pre code {
  opacity: 1;
}

/* Inline footnotes */

label {
  cursor: pointer;
  vertical-align: super;
  line-height: 1;
  font-size: .75em;
  padding-left: .1em;
}

label:hover {
  color: var(--highlight);
}

label:before {content:"[";}
label:after {content:"]";}

label + input,
label + input + small {
  display: none;
}

input:checked + small {
  display: block;
  padding: .8em 0 1em 2.5vw;;
}

/* Figures */

figure {
  margin: 2em 0 1.5em 0;
}

figure figcaption {
  margin: 0.8em 0 0 0;
  font-size: .85em;
  opacity: .7;
}

/* Responsive video embeds */

figure.video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
}

figure.video iframe, figure.video object, figure.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  visibility: hidden; /* so loading="lazy" should work? */
}

section:target iframe {
  visibility: visible;
}


/* File links */

a:before { 
  font-size: .7em;
  margin-right: .4em;
}

/* Add more filetypes here if you want */


a[href$=".txt"]:before { content: "TXT"; }
a[href$=".mp3"]:before { content: "MP3"; }
a[href$=".jpeg"]:before,
a[href$=".jpg"]:before,
a[href$=".gif"]:before,
a[href$=".png"]:before { content: "IMG"; }

/* ------- News ------- */

article + article {
  margin-top: 5em;
}

article h1 {
  font-size: 1em;
  font-weight:700;
  margin-bottom: 1em;
}

article time {
  margin-left: .6em;
  font-size: .8em;
  font-weight: 400;
  opacity: .7;
}

/* ------- Images Grid ------- */

.grid {
  display: grid;
  grid-gap: 5vmin;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  grid-auto-flow: dense;
  padding: 2em 0;
}

.grid a {
  position: relative;
  border: 0;
}

.grid a:before {
  content: "";
  display: block;
  padding-top: 100%;
}

.grid a img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.grid a:hover {
  transform: scale(.975);
}

/* ------- Slideshow ------- */

.slides {
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  overflow-y:scroll;
  scroll-snap-type:y mandatory;
}

.slides figure {
  height:100vh;
  padding:0 5vw;
  margin:0;
  display:grid;
  place-items:center;
  align-content: center;
  scroll-snap-align:center;
  background-size: cover; /* Full bleed background images */
  background-position: center center;
}

.slides figure img {
  max-height:88vh;
}

/* ------- Lightbox ------- */

.lightbox {
  position: fixed;
  display: none;
  color: var(--textcolor);
}

.lightbox:target {
  top: 0;
  right: 0;
  left: 0;
  height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  background: var(--bgcolor);
  border: 0;
  z-index: 3;
}

.lightbox img {
  max-height: 100vh;
  z-index: 4;
}

.lightbox:target:before { /* Loading spinner */
  content:"";
  height: 2em;
  width: 2em;
  animation: spin .8s infinite linear;
  border: 1px solid;
  border-right-color: transparent;
  border-radius: 50%;
  display: block;
  position: absolute;
  transform: translateX(-50%);
  opacity: .25;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.lightbox:target:after { /* Ã— to close */
  content: "\00D7";
  position: fixed;
  font-size: 2em;
  font-weight: 200;
  line-height: 0;
  top: .75em;
  right: .5em;
  z-index: 4;
}

/* ------- Book Tabs ------- */

#books input[type="radio"] {
  display: none;
}

#books > label {
  display: inline-block;
  cursor: pointer;
  padding: .4em 1.2em .4em 0;
  margin-right: 1em;
  opacity: .4;
  font-size: 1em;
  font-weight: 600;
  vertical-align: baseline;
  line-height: 1.45;
  border-bottom: 2px solid transparent;
}

#books > label:hover {
  opacity: .7;
  border-bottom: none;
}

#books > label:before,
#books > label:after {
  content: "";
}

#tab-nonfiction:checked + label[for="tab-nonfiction"],
#tab-fiction:checked + label[for="tab-fiction"] {
  opacity: 1;
  border-bottom: 2px solid var(--highlight);
}

.tab-content {
  display: none;
  margin-top: 2em;
}

#tab-nonfiction:checked ~ #content-nonfiction,
#tab-fiction:checked ~ #content-fiction {
  display: block;
}

/* ------- Creative grid ------- */

.creative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1.5em;
  max-width: 560px;
}

.creative-grid .caption-hover {
  position: relative;
  margin: 0;
}

.creative-grid .caption-hover img {
  width: 100%;
  height: auto;
  display: block;
}

.caption-hover figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
  white-space: nowrap;
}

.caption-hover:hover figcaption {
  opacity: 1;
}

.caption-hover a:before {
  content: "";
}

/* ------- Print ------- */

@media print {
  
  nav, .lightbox:target:after { display: none; }
  
  article, figure, img {
    page-break-inside: avoid;
    break-inside: avoid;
  }
  
  /* Inline footnotes */
  label + input + small { display: inline; }
  label + input + small:before { content: "["; }
  label + input + small:after { content: "]"; }
    
}
