html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  border: 0;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --margin: 80px;
  --max-width: 1280px;
  --gutter: 8.635%;
  --column-colors: #ff000008;
  --grid-background-color: #ff000008;
}

.layout {
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
}

.layout .canvas {
  max-width: calc(var(--max-width)  + var(--margin));
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: block;
}

.layout .canvas .columns {
  width: calc(100% - var(--margin));
  background-color: var(--grid-background-color);
  background-image: repeating-linear-gradient(to right, var(--column-colors), var(--column-colors) 5%, transparent 5%, transparent var(--gutter));
  height: 100%;
  margin: 0 auto;
  display: block;
}

body.grid {
  background-image: repeating-linear-gradient(#ff000014, #ff000014 1px, #0000 1px 15px);
}

.inner, .columns {
  max-width: calc(var(--max-width)  + var(--margin));
  box-sizing: border-box;
  grid-gap: 3.635%;
  grid-template-columns: repeat(12, 1fr);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
}

body.grid .inner > *, body.grid .columns > * {
  border: 1px solid #f003;
}

.span-2 {
  grid-column: span 2;
}

.span-4 {
  grid-column: span 4;
}

.span-6 {
  grid-column: span 6;
}

.span-7 {
  grid-column: span 7;
}

.span-8 {
  grid-column: span 8;
}

@font-face {
  font-family: Aktiv Grotesk;
  src: url("/fonts/AktivGrotesk-Light.woff2") format("woff2"), url("/fonts/AktivGrotesk-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aktiv Grotesk;
  src: url("/fonts/AktivGrotesk-LightItalic.woff2") format("woff2"), url("/fonts/AktivGrotesk-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Aktiv Grotesk;
  src: url("/fonts/AktivGrotesk-Bold.woff2") format("woff2"), url("/fonts/AktivGrotesk-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aktiv Grotesk;
  src: url("/fonts/AktivGrotesk-Medium.woff2") format("woff2"), url("/fonts/AktivGrotesk-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aktiv Grotesk;
  src: url("/fonts/AktivGrotesk-Italic.woff2") format("woff2"), url("/fonts/AktivGrotesk-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Aktiv Grotesk;
  src: url("/fonts/AktivGrotesk-BoldItalic.woff2") format("woff2"), url("/fonts/AktivGrotesk-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Aktiv Grotesk;
  src: url("/fonts/AktivGrotesk-Light.woff2") format("woff2"), url("/fonts/AktivGrotesk-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Aktiv Grotesk;
  src: url("/fonts/AktivGrotesk-MediumItalic.woff2") format("woff2"), url("/fonts/AktivGrotesk-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Aktiv Grotesk;
  src: url("/fonts/AktivGrotesk-Regular.woff2") format("woff2"), url("/fonts/AktivGrotesk-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #fff;
  --foreground: #000000d9;
  --surface: #fffaf3;
  --light: #5752794d;
  --link: #286983;
  --love: #eb6f92;
  --rose: #f4dbd6;
  --pine: #286983;
  --gold: #ea9d34;
  --blue: #1e66f5;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #232136;
    --foreground: #e0def4;
    --surface: #2a273f;
    --link: #3e8fb0;
    --rose: #eebebe;
    --blue: #8caaee;
  }

  article figure {
    color: var(--background);
  }
}

html, body {
  height: 100%;
}

body {
  color: var(--foreground);
  background: var(--background);
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  font: 1.25rem / 1.88rem Aktiv Grotesk;
}

a {
  color: var(--blue);
  -webkit-tap-highlight-color: transparent;
  transition: color 80ms ease-in-out;
}

a:hover {
  color: var(--love);
}

header {
  border-bottom: 1px dashed #484848;
  margin-top: 2.4rem;
  padding-bottom: 4.62rem;
}

header hgroup {
  grid-column: span 9;
}

header h1 {
  font-weight: 500;
}

header h2 {
  color: gray;
  margin-bottom: 1.95rem;
}

header p {
  margin-bottom: 5.5rem;
  font-size: 2.25rem;
  font-weight: normal;
  line-height: 2.85rem;
}

header p:after {
  content: "";
  vertical-align: -.3rem;
  background-color: red;
  width: 3px;
  height: 2.25rem;
  margin-left: -.45rem;
  animation: 1.5s steps(2, end) infinite cursor-blink;
  display: inline-block;
}

@keyframes cursor-blink {
  0% {
    opacity: 0;
  }
}

a {
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}

header nav li {
  margin-bottom: .95rem;
}

header nav a .year {
  color: gray;
  margin-left: .5rem;
}

em {
  font-style: italic;
}

strong {
  font-weight: 500;
}

article {
  margin-bottom: 8.9rem;
}

section {
  margin-top: 4.52rem;
  margin-bottom: 4.62rem;
}

section .content p {
  margin-bottom: 1.4rem;
}

section .content p:last-of-type {
  margin-bottom: 0;
}

section .heading > hgroup {
  margin-bottom: 1.5rem;
  position: sticky;
  top: 4.62rem;
}

section h2 {
  font-weight: 500;
}

section .heading p {
  opacity: .5;
}

figure {
  text-align: center;
}

figure.no-background {
  background: none;
}

figure.no-background img {
  margin-bottom: .7rem;
}

figcaption {
  font-size: 1rem;
  font-weight: 500;
}

footer {
  padding-bottom: 5rem;
}

footer .build-info {
  opacity: .5;
}

#about img {
  border-radius: 100%;
}

@media only screen and (max-width: 1124px) {
  header hgroup {
    grid-column: span 12;
  }
}

@media only screen and (max-width: 740px) {
  .inner, .columns {
    padding: 0 20px;
  }

  .columns {
    display: inherit;
  }

  header {
    border: none;
  }

  header p {
    margin-top: 2.2rem;
    margin-bottom: 4.5rem;
    font-size: 1.8rem;
    line-height: 2.5rem;
  }

  header hgroup {
    grid-column: span 12;
  }

  section {
    margin-top: 1.8rem;
    margin-bottom: 2.8rem;
  }

  section .heading > hgroup {
    margin-bottom: 1.3rem;
  }

  article {
    margin-bottom: 4rem;
  }

  section .heading, section .content {
    grid-column: span 12;
  }

  figure {
    margin-left: 10px;
    margin-right: 10px;
  }

  figcaption {
    margin-top: .35rem;
  }

  figure.no-background {
    margin-left: 0;
    margin-right: 0;
  }

  figure.no-background img {
    margin-bottom: 0;
  }

  #about {
    margin-top: 5.1rem;
  }

  #about img {
    margin-bottom: .8rem;
    margin-left: -.3rem;
  }

  footer {
    padding-bottom: 2rem;
  }

  section#music-artist + figure.no-background img {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: left center;
    width: 100%;
    height: auto;
  }
}

@media only screen and (max-width: 430px) {
  header hgroup {
    grid-column: span 12;
  }
}
