@charset "UTF-8";
/* Literata Variable */
@font-face {
  font-family: 'Literata Variable';
  font-style: normal;
  font-weight: 200 900;
  src: url("./fonts/literata/Literata-Roman-VF-subset.woff2") format("woff2 supports variations"), url("./fonts/literata/Literata-Roman-VF-subset.woff2") format("woff2-variations");
  font-display: swap; }

@font-face {
  font-family: 'Literata Variable';
  font-style: italic;
  font-weight: 200 900;
  src: url("./fonts/literata/Literata-Italic-VF-subset.woff2") format("woff2 supports variations"), url("./fonts/literata/Literata-Italic-VF-subset.woff2") format("woff2-variations");
  font-display: swap; }

/* Proxima Vara */
@font-face {
  font-family: 'Proxima Vara';
  font-weight: 100 900;
  /* default 400 */
  font-stretch: 50% 100%;
  /* default 100% */
  src: url("./fonts/proxima-vara/ProximaVara.woff2") format("woff2 supports variations"), url("./fonts/proxima-vara/ProximaVara.woff2") format("woff2-variations");
  font-display: swap;
  /* italic: 0 1 (default 0) */ }

/* Obviously */
@font-face {
  font-family: 'Obviously';
  font-weight: 150 800;
  /* default 100 */
  font-stretch: 100% 800%;
  /* default 100% */
  font-style: oblique 0deg 14deg;
  src: url("./fonts/obviously/ObviouslyVariable.woff2") format("woff2 supports variations"), url("./fonts/obviously/ObviouslyVariable.woff2") format("woff2-variations");
  font-display: swap; }

/* Name Sans */
@font-face {
  font-family: 'Name Sans';
  font-weight: 1 900;
  /* default 700 */
  src: url("./fonts/name-sans/name_sans-variable.woff2") format("woff2 supports variations"), url("./fonts/name-sans/name_sans-variable.woff2") format("woff2-variations");
  font-display: swap;
  /* opsz: 12 96  default 96 */ }

/* Recursive */
@font-face {
  font-family: 'Recursive';
  font-weight: 300 1000;
  /* default 300 */
  src: url("./fonts/recursive/Recursive_VF_1.054.woff2") format("woff2 supports variations"), url("./fonts/recursive/Recursive_VF_1.054.woff2") format("woff2-variations");
  font-display: swap;
  /* slnt: -15 0  default 0 */
  /* MONO: 0 1  default 0 */
  /* CASL: 0 1  default 0 */
  /* CRSV: 0 1  default 0.5 */ }

/* Roboto Flex */
@font-face {
  font-family: 'Roboto Flex';
  font-weight: 100 1000;
  /* default 400 */
  font-stretch: 25% 800%;
  /* default 100% */
  font-style: oblique 0deg 10deg;
  src: url("./fonts/roboto-flex/RobotoFlex.woff2") format("woff2 supports variations"), url("./fonts/roboto-flex/RobotoFlex.woff2") format("woff2-variations");
  font-display: swap;
  /* opsz: 8 144  default 14 */
  /* GRAD: -1 1  default 0 */
  /* YTLC: 416 570  default 514 */ }

/* Fraunces Variable */
@font-face {
  font-family: 'Fraunces Variable';
  font-style: normal;
  font-weight: 100 900;
  src: url("./fonts/fraunces/Fraunces-Roman-VF.woff2") format("woff2 supports variations"), url("./fonts/fraunces/Fraunces-Roman-VF.woff2") format("woff2-variations");
  font-display: swap;
  /* opsz: 9 144  default 144 */
  /* SOFT: 0 100  default 100 */
  /* WONK: 0 1  default 1 */ }

@font-face {
  font-family: 'Fraunces Variable';
  font-style: italic;
  font-weight: 100 900;
  src: url("./fonts/fraunces/Fraunces-Italic-VF.woff2") format("woff2 supports variations"), url("./fonts/fraunces/Fraunces-Italic-VF.woff2") format("woff2-variations");
  font-display: swap;
  /* opsz: 9 144  default 144 */
  /* SOFT: 0 100  default 100 */
  /* WONK: 0 1  default 1 */ }

:root {
  --fonts-base-serif: Georgia, 'Times New Roman', Times, serif;
  --fonts-base-sans: Helvetica, Arial, sans-serif;
  --fonts-serif: "Literata Variable", var(--fonts-base-serif);
  --fonts-sans: "Proxima Vara", var(--fonts-base-sans);
  --color-gray: #3e3e3e;
  --color-gray-light: #a3a3a3;
  --color-text: var(--color-gray); }

html {
  box-sizing: border-box; }

*, *:before, *:after {
  box-sizing: inherit; }

body {
  color: var(--color-text);
  font-family: var(--fonts-sans); }

h1 {
  display: block;
  font-size: 8vw;
  line-height: 1;
  text-align: left;
  transition: all 0.25s ease-in; }

h2 {
  display: block;
  font-size: 5vw;
  line-height: 1;
  text-align: left;
  transition: all 0.25s ease-in; }

cite {
  display: block;
  font-size: 2.5vw;
  line-height: 1;
  text-align: left;
  transition: all 0.25s ease-in; }

p {
  display: block;
  font-size: 1.5vw;
  line-height: 1.35;
  text-align: left;
  transition: all 0.25s ease-in; }

img {
  height: auto;
  max-width: 100%;
  width: 100%; }

figure {
  margin: 0;
  padding: 0;
  transition: all 0.15s ease-in; }

.hidden-filter {
  position: fixed;
  opacity: 0; }

.reveal {
  /* general code cue styles */ }
  .reveal pre {
    font-family: 'Input Mono VF', monospace;
    font-size: 1.45vw;
    margin: 0;
    width: 100%; }
    .reveal pre code {
      background-color: transparent;
      background-image: linear-gradient(120deg, rgba(0, 0, 36, 0.9) 0%, rgba(0, 0, 71, 0.9) 35%, rgba(0, 0, 121, 0.9) 100%);
      color: #ffffff;
      font-family: 'Input Mono VF', monospace;
      max-height: none; }
  .reveal .code-cue {
    position: absolute;
    bottom: 1vh;
    right: 0;
    transition: all 2s ease-in-out;
    width: 44vw;
    z-index: 99; }
    .reveal .code-cue.visible:not(.current-fragment) {
      opacity: 0 !important; }
  .reveal .resource-link {
    background-color: rgba(33, 33, 33, 0.9);
    border-radius: 0 0.25em 0 0;
    bottom: 0;
    color: #ffffff;
    font-size: 1.5vw;
    font-weight: 450;
    font-stretch: 75%;
    left: 0;
    padding: 0.25em 1.5em;
    position: absolute;
    z-index: 90; }

.reveal .slides {
  margin: 0;
  padding: 0;
  text-align: left; }
  .reveal .slides > section {
    height: 100%;
    margin: 0;
    padding: 0; }
    .reveal .slides > section .container {
      display: flex !important;
      flex-direction: column;
      height: 100%;
      justify-content: center;
      margin: 1rem 5vw; }
    .reveal .slides > section.title h1 {
      font-family: "Name Sans";
      font-size: 14vw;
      font-weight: 15;
      letter-spacing: -0.215em;
      text-transform: uppercase;
      word-spacing: 0.45em; }
    .reveal .slides > section.title h2 {
      font-family: "Name Sans";
      font-size: 4.65vw;
      font-weight: 75;
      padding-left: 0.75vw; }
    .reveal .slides > section.title cite {
      color: var(--color-gray-light);
      font-family: "Name Sans";
      font-weight: 775;
      margin-top: 5vh;
      padding-left: 0.85vw; }

.section-title h1 {
  font-family: "Name Sans";
  font-size: 12vw;
  font-weight: 100;
  letter-spacing: 0.125em;
  transition-delay: .25s;
  transition-duration: 1.25s; }

.section-title.present h1 {
  font-weight: 30;
  letter-spacing: 0; }

.vf-quote {
  width: 41vw;
  margin: 32vh 0 0 3vw; }
  .vf-quote h3 {
    font-family: "Literata";
    font-variant-ligatures: common-ligatures;
    font-size: 2.75vw;
    font-style: italic;
    font-weight: 200;
    line-height: 1.25;
    text-align: left;
    transition: all 1s ease-in;
    letter-spacing: normal; }
  .vf-quote h4 {
    font-family: "Roboto Flex";
    font-size: 2.25vw;
    font-style: oblique 5deg;
    font-stretch: 85%;
    font-weight: 250;
    text-align: left; }

.present .vf-quote h3 {
  font-weight: 300; }

.vf-explained {
  transition: all 1s ease-in-out; }

.future .vf-explained {
  opacity: 0; }

.present .vf-explained {
  opacity: 1;
  position: absolute;
  top: 15vh;
  left: 48vw;
  z-index: 10;
  transition-delay: 2s; }
  .present .vf-explained .font {
    background: url(images/font_outline.svg) no-repeat;
    background-size: contain;
    background-position: top left;
    font-family: "Roboto Flex";
    font-size: 4vw;
    font-weight: 100;
    width: 1.75em;
    text-align: center;
    line-height: 2.25;
    transition: all 2s ease-in-out; }
  .present .vf-explained .font1 {
    font-stretch: 60%;
    font-weight: 100;
    position: absolute;
    top: 0;
    left: 0; }
  .present .vf-explained .font2 {
    font-stretch: 65%;
    font-weight: 150;
    position: absolute;
    top: 0;
    left: 10vw; }
  .present .vf-explained .font3 {
    font-stretch: 70%;
    font-weight: 200;
    position: absolute;
    top: 0;
    left: 20vw; }
  .present .vf-explained .font4 {
    font-stretch: 75%;
    font-weight: 250;
    position: absolute;
    top: 0;
    left: 30vw; }
  .present .vf-explained .font5 {
    font-stretch: 80%;
    font-weight: 300;
    position: absolute;
    top: 0;
    left: 40vw; }
  .present .vf-explained .font6 {
    font-stretch: 70%;
    font-weight: 400;
    position: absolute;
    top: 21vh;
    left: 0; }
  .present .vf-explained .font7 {
    font-stretch: 75%;
    font-weight: 450;
    position: absolute;
    top: 21vh;
    left: 10vw; }
  .present .vf-explained .font8 {
    font-stretch: 80%;
    font-weight: 500;
    position: absolute;
    top: 21vh;
    left: 20vw; }
  .present .vf-explained .font9 {
    font-stretch: 85%;
    font-weight: 550;
    position: absolute;
    top: 21vh;
    left: 30vw; }
  .present .vf-explained .font10 {
    font-stretch: 90%;
    font-weight: 600;
    position: absolute;
    top: 21vh;
    left: 40vw; }
  .present .vf-explained .font11 {
    font-stretch: 80%;
    font-weight: 700;
    position: absolute;
    top: 42vh;
    left: 0; }
  .present .vf-explained .font12 {
    font-stretch: 85%;
    font-weight: 750;
    position: absolute;
    top: 42vh;
    left: 10vw; }
  .present .vf-explained .font13 {
    font-stretch: 90%;
    font-weight: 800;
    position: absolute;
    top: 42vh;
    left: 20vw; }
  .present .vf-explained .font14 {
    font-stretch: 95%;
    font-weight: 850;
    position: absolute;
    top: 42vh;
    left: 30vw; }
  .present .vf-explained .font15 {
    font-stretch: 100%;
    font-weight: 900;
    position: absolute;
    top: 42vh;
    left: 40vw; }

.present.merged .vf-explained .font {
  top: 0;
  left: 10vw;
  font-size: 20vw;
  line-height: 1.5;
  padding-bottom: 0.25em;
  width: 27vw; }
  .present.merged .vf-explained .font1 {
    opacity: 1; }
  .present.merged .vf-explained .font2 {
    opacity: .035; }
  .present.merged .vf-explained .font3 {
    opacity: .035; }
  .present.merged .vf-explained .font4 {
    opacity: .045; }
  .present.merged .vf-explained .font5 {
    opacity: .035; }
  .present.merged .vf-explained .font6 {
    opacity: .5;
    -webkit-text-stroke: 1px var(--color-text);
    text-stroke: 1px var(--color-text);
    color: transparent; }
  .present.merged .vf-explained .font7 {
    opacity: .045; }
  .present.merged .vf-explained .font8 {
    opacity: .075; }
  .present.merged .vf-explained .font9 {
    opacity: .035; }
  .present.merged .vf-explained .font10 {
    opacity: .035; }
  .present.merged .vf-explained .font11 {
    opacity: .5;
    -webkit-text-stroke: 1px var(--color-text);
    text-stroke: 1px var(--color-text);
    color: transparent; }
  .present.merged .vf-explained .font12 {
    opacity: .045; }
  .present.merged .vf-explained .font13 {
    opacity: .035; }
  .present.merged .vf-explained .font14 {
    opacity: .035; }
  .present.merged .vf-explained .font15 {
    opacity: .5;
    -webkit-text-stroke: 1px var(--color-text);
    text-stroke: 1px var(--color-text);
    color: transparent; }

.vf-collie {
  transition: all 1s ease-in-out; }
  .vf-collie .code-cue {
    top: 1vh;
    bottom: auto;
    left: 0;
    right: auto; }
  .vf-collie .variable_collies img {
    margin-top: -12vh; }
  .vf-collie div[class*="axis-"] {
    color: #fff;
    font-family: "Roboto Flex";
    font-size: 4vw;
    transition: all 2s ease-in-out; }
  .vf-collie .axis-width1 {
    font-stretch: 80%;
    font-weight: 600;
    opacity: 0;
    text-align: center;
    width: 12vw;
    position: absolute;
    top: 19vh;
    left: 76.25vw;
    z-index: 5; }
    .vf-collie .axis-width1 .diagram-line {
      width: 100%;
      height: 1vh;
      border-top: solid 2px #fff;
      border-left: solid 2px #fff;
      border-right: solid 2px #fff; }
  .vf-collie.varcol-width .axis-width1 {
    font-stretch: 150%;
    opacity: 1; }
  .vf-collie .axis-width2 {
    font-stretch: 100%;
    font-weight: 400;
    opacity: 0;
    text-align: center;
    width: 9vw;
    position: absolute;
    top: 30vh;
    left: 39vw;
    z-index: 5; }
    .vf-collie .axis-width2 .diagram-line {
      width: 100%;
      height: 1vh;
      border-top: solid 2px #fff;
      border-left: solid 2px #fff;
      border-right: solid 2px #fff; }
  .vf-collie.varcol-width .axis-width2 {
    font-stretch: 25%;
    opacity: 1; }
  .vf-collie .axis-weight1 {
    font-weight: 600;
    opacity: 0;
    text-align: center;
    width: 15vw;
    position: absolute;
    top: 88vh;
    left: 72vw;
    z-index: 5; }
    .vf-collie .axis-weight1 .diagram-line {
      position: absolute;
      top: -1vh;
      left: 0;
      width: 100%;
      height: 1vh;
      border-bottom: solid 2px #fff;
      border-left: solid 2px #fff;
      border-right: solid 2px #fff; }
  .vf-collie.varcol-weight .axis-weight1 {
    font-weight: 900;
    opacity: 1; }
  .vf-collie .axis-weight2 {
    font-weight: 600;
    opacity: 0;
    text-align: center;
    width: 12vw;
    position: absolute;
    top: 87vh;
    left: 38vw;
    z-index: 5; }
    .vf-collie .axis-weight2 .diagram-line {
      position: absolute;
      top: -1vh;
      left: 0;
      width: 100%;
      height: 1vh;
      border-bottom: solid 2px #fff;
      border-left: solid 2px #fff;
      border-right: solid 2px #fff; }
  .vf-collie.varcol-weight .axis-weight2 {
    font-weight: 100;
    opacity: 1; }
  .vf-collie .axis-xheight1 {
    font-variation-settings: 'YTLC' 450;
    opacity: 0;
    position: absolute;
    top: 58vh;
    left: 55vw;
    z-index: 5; }
    .vf-collie .axis-xheight1 .diagram-line {
      position: absolute;
      top: -25vh;
      right: -2vw;
      width: 1vw;
      height: 60vh;
      border-bottom: solid 2px #fff;
      border-left: solid 2px #fff;
      border-top: solid 2px #fff; }
  .vf-collie.varcol-xheight .axis-xheight1 {
    font-variation-settings: 'YTLC' 570;
    opacity: 1; }
  .vf-collie .axis-xheight2 {
    font-variation-settings: 'YTLC' 550;
    opacity: 0;
    position: absolute;
    top: 60vh;
    left: 21vw;
    z-index: 5; }
    .vf-collie .axis-xheight2 .diagram-line {
      position: absolute;
      top: -20vh;
      right: -2vw;
      width: 1vw;
      height: 45vh;
      border-bottom: solid 2px #fff;
      border-left: solid 2px #fff;
      border-top: solid 2px #fff; }
  .vf-collie.varcol-xheight .axis-xheight2 {
    font-variation-settings: 'YTLC' 416;
    opacity: 1; }

.vf-collie2 .variable_collies2 img {
  margin-top: -10vh; }

.vf-collie2 .axis-slant {
  color: #fff;
  font-family: "Roboto Flex";
  font-size: 4vw;
  font-style: oblique 0deg;
  transition: all 2s ease-in-out;
  font-weight: 400;
  opacity: 1;
  text-align: center;
  width: 12vw;
  position: absolute;
  top: 22vw;
  left: 12.5vw;
  z-index: 5; }
  .vf-collie2 .axis-slant .label {
    padding-right: 2vw; }
  .vf-collie2 .axis-slant .diagram-line {
    position: absolute;
    top: -20vh;
    right: 0;
    width: 2px;
    height: 30vh;
    border-left: solid 2px #fff;
    transition: all 1s ease-in-out; }
  .vf-collie2 .axis-slant .diagram-line2 {
    position: absolute;
    top: -20vh;
    right: 0;
    width: 2px;
    height: 30vh;
    border-left: solid 2px #fff;
    transition: all 2s ease-in-out;
    transform-origin: bottom right; }

.vf-collie2.varcol-slant .axis-slant {
  font-style: oblique 10deg; }

.vf-collie2.varcol-slant .diagram-line {
  opacity: 0.6; }

.vf-collie2.varcol-slant .diagram-line2 {
  transform: rotate(28deg);
  transform-origin: bottom right; }

.optical-sizing .device-frame-3-1 {
  border-radius: .25rem;
  border: solid 1px #d6d6dc;
  opacity: 1;
  padding: 2rem;
  position: absolute;
  top: 10vh;
  left: 25vw;
  height: 60vh;
  width: 50vw;
  transition: all 1s ease-in-out;
  z-index: 10;
  --opsz: 12; }
  .optical-sizing .device-frame-3-1 > * {
    color: --color-text;
    font-family: "Literata";
    max-width: 100%;
    opacity: 1;
    transition: all 1s ease-in-out; }
  .optical-sizing .device-frame-3-1 label {
    font-family: var(--fonts-sans);
    position: absolute;
    top: 0.5vh;
    left: 0.5vw; }
  .optical-sizing .device-frame-3-1 h1 {
    color: var(--color-text);
    font-size: 5vw;
    font-stretch: 90%;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    position: static;
    font-variation-settings: "opsz" var(--opsz); }
  .optical-sizing .device-frame-3-1 h2 {
    color: var(--color-text);
    font-size: 4vw;
    line-height: 1;
    margin-bottom: 0.75rem;
    position: static;
    font-variation-settings: "opsz" var(--opsz); }
  .optical-sizing .device-frame-3-1 h3 {
    color: var(--color-text);
    font-size: 2.25vw;
    line-height: 1;
    margin-bottom: 0.75rem;
    position: static;
    font-variation-settings: "opsz" var(--opsz); }
  .optical-sizing .device-frame-3-1 h4 {
    color: var(--color-text);
    font-size: 2vw;
    position: static;
    display: none;
    font-variation-settings: "opsz" var(--opsz); }
  .optical-sizing .device-frame-3-1 p {
    color: var(--color-text);
    font-size: 1.25vw;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    position: static;
    font-variation-settings: "opsz" var(--opsz); }
  .optical-sizing .device-frame-3-1 .caption {
    color: var(--color-text);
    font-size: 1vw;
    line-height: 1.25;
    margin-bottom: 0.5rem;
    position: static;
    font-variation-settings: "opsz" var(--opsz); }

.optical-sizing.opsz-correct .device-frame-3-1 h1 {
  --opsz: 72; }

.optical-sizing.opsz-correct .device-frame-3-1 h2 {
  --opsz: 60; }

.optical-sizing.opsz-correct .device-frame-3-1 h3 {
  --opsz: 48; }

.optical-sizing.opsz-correct .device-frame-3-1 p {
  --opsz: 20; }

.coin .coin-container {
  display: block;
  position: relative; }

.coin h1 {
  display: block;
  float: left;
  font-size: 8vw;
  position: relative;
  shape-outside: polygon(0px 0px, 40vw 0px, 40vw 23%, 25vw 23%, 25vw 53%, 47vw 53%, 47vw 77%, 17.5vw 77%, 17.5vw 100%, 0 100%);
  width: 47vw; }

.coin p {
  display: inline;
  font-family: "Fraunces Variable";
  font-size: 1.625vw;
  font-weight: 300;
  font-variation-settings: 'WONK' 0, 'SOFT' 10;
  line-height: 1.7; }
  .coin p + p::before {
    content: "¶";
    display: inline-block;
    opacity: 0.5;
    padding: 0 0.5em; }

.closer {
  background: url(images/tristan_and_tillie.jpeg);
  background-size: cover;
  background-position: left -20vh;
  position: relative; }
  .closer h1 {
    color: #ffffff;
    font-family: "Name Sans";
    font-size: 12vw;
    font-weight: 500;
    margin-top: 72vh;
    text-shadow: -0.1vw -0.1vw 2vw rgba(0, 0, 0, 0.5), 0.1vw 0.1vw 0.1vw rgba(0, 0, 0, 0.75);
    transition-delay: .15s;
    transition-duration: 0.75s; }
  .closer.present h1 {
    font-weight: 800; }
  .closer.present .notes {
    opacity: 1; }
  .closer .notes {
    background-color: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-family: "Name Sans";
    position: absolute;
    right: 2.5vw;
    bottom: 0;
    min-height: 35vh;
    opacity: 0;
    padding: 1.5vw;
    z-index: 1;
    text-align: left;
    transition: all 0.2s ease-in;
    transition-delay: 0.5s; }
    .closer .notes h3 {
      font-size: 4vw;
      font-weight: 525; }
    .closer .notes h4 {
      font-size: 3vw;
      font-weight: 315;
      margin-bottom: 2.5vh; }
    .closer .notes p {
      font-size: 1.5vw; }

.cover-example {
  background: rgba(0, 0, 0, 0.75);
  height: calc(100vh + 1rem);
  margin: -1rem -5vw;
  opacity: 0;
  position: absolute;
  top: -1rem;
  transition: all 0.2s ease-in;
  width: 100vw;
  z-index: -1; }
  .cover-example img {
    display: block;
    height: 95vh;
    width: auto;
    margin: 2rem auto; }

.cover {
  position: relative; }
  .cover h1 {
    font-size: 5vw; }
  .cover h2 {
    font-size: 3vw; }
  .cover > * {
    transition: all 0.25s ease-in; }
  .cover .top {
    position: absolute;
    top: 5vh;
    width: 100%; }
    .cover .top > * {
      margin-top: 0; }
    .cover .top .teaser {
      position: relative; }
      .cover .top .teaser figure {
        width: 15vw;
        z-index: 0; }
      .cover .top .teaser h1 {
        left: 17vw;
        position: absolute;
        bottom: 60%;
        z-index: 1; }
      .cover .top .teaser h2 {
        left: 17vw;
        position: absolute;
        bottom: 0;
        z-index: 1; }
  .cover .teaser figure {
    width: 15vw; }
  .cover .secondary {
    border-top: solid 1px var(--color-gray-light);
    display: grid;
    margin-top: 2.5vh;
    padding-top: 2.5vh;
    position: absolute;
    top: 26vh;
    left: 0;
    row-gap: 2.5vh;
    width: 100%; }
    .cover .secondary h1 {
      font-size: 4vw; }
    .cover .secondary h2 {
      font-size: 2vw; }
  .cover .tertiary {
    border-top: solid 1px var(--color-gray-light);
    display: grid;
    grid-auto-flow: row;
    margin-top: 2.5vh;
    padding-top: 2.5vh;
    position: absolute;
    top: 69vh;
    left: 0;
    row-gap: 2.5vh;
    width: 100%; }
    .cover .tertiary h1 {
      font-size: 3vw; }
  .cover-2 .cover .cover-2-example {
    opacity: 1;
    z-index: 10; }
  .cover-2 .cover .top {
    top: 0; }
    .cover-2 .cover .top .teaser figure {
      height: 80vh;
      overflow: hidden;
      width: 100%;
      z-index: 0; }
      .cover-2 .cover .top .teaser figure img {
        margin-top: -10%; }
    .cover-2 .cover .top .teaser h1 {
      color: rgba(0, 0, 0, 0.75);
      font-size: 13.5vw;
      font-variant-caps: all-small-caps;
      font-weight: 800;
      letter-spacing: -0.125em;
      line-height: 0.7;
      left: 2.5%;
      bottom: 20%;
      text-shadow: -0.1vw -0.1vw 2vw rgba(255, 255, 255, 0.35), 0.1vw 0.1vw 0.1vw rgba(255, 255, 255, 0.75);
      word-spacing: 1em; }
    .cover-2 .cover .top .teaser h2 {
      font-size: 2.5vw;
      font-weight: 600;
      left: 2.5%;
      bottom: 2.5%;
      text-shadow: -0.1vw -0.1vw 2vw rgba(255, 255, 255, 0.5), 0.1vw 0.1vw 0.1vw rgba(255, 255, 255, 0.75);
      width: 65%; }
  .cover-2 .cover .secondary {
    background-color: rgba(245, 245, 255, 0.85);
    border-right: solid 0.25vw var(--color-text);
    padding: 1.5vw 0.75vw 1.5vw 1.5vw;
    top: 6vh;
    left: 75%;
    width: calc( 25% + 0.25vw); }
    .cover-2 .cover .secondary h1 {
      font-size: 2.5vw;
      font-weight: 525;
      font-stretch: 75%; }
    .cover-2 .cover .secondary h2 {
      font-size: 1.45vw; }
  .cover-2 .cover .tertiary {
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 0.25vw;
    padding-top: 1vh;
    top: 78.5vh; }
    .cover-2 .cover .tertiary > * {
      background-color: var(--color-text);
      color: #ffffff;
      padding: 1vw; }
    .cover-2 .cover .tertiary h1 {
      font-size: 2vw;
      font-weight: 250;
      font-stretch: 65%; }
  .cover-2-revealed .cover .cover-2-example {
    opacity: 0;
    z-index: -1; }
  .cover-3 .cover .cover-3-example {
    opacity: 1;
    z-index: 10; }
  .cover-3 .cover .top {
    top: 0; }
    .cover-3 .cover .top .teaser figure {
      height: 80vh;
      overflow: hidden;
      width: 75%;
      z-index: 0; }
      .cover-3 .cover .top .teaser figure img {
        margin-top: -2.5%;
        filter: url(#duotone); }
    .cover-3 .cover .top .teaser h1 {
      color: #4a4a54;
      font-size: 18vw;
      font-weight: 200;
      font-stretch: 50%;
      left: 2.5%;
      bottom: 15%;
      font-variant-caps: normal;
      letter-spacing: 0;
      line-height: 1;
      text-shadow: -0.1vw -0.1vw 2vw rgba(255, 255, 255, 0.5), 0.1vw 0.1vw 0.1vw rgba(255, 255, 255, 0.85);
      width: 65%; }
    .cover-3 .cover .top .teaser h2 {
      color: #ffffff;
      font-size: 2.5vw;
      font-weight: 750;
      font-stretch: 85%;
      left: 2.5%;
      bottom: 2.5%;
      text-shadow: -0.1vw -0.1vw 2vw rgba(0, 0, 0, 0.5), 0.1vw 0.1vw 0.1vw rgba(0, 0, 0, 0.75);
      width: 65%; }
  .cover-3 .cover .secondary {
    background-color: #5a5a64;
    border-right: solid 0.25vw var(--color-text);
    color: #ffffff;
    padding: 1.5vw 0.75vw 1.5vw 1.5vw;
    top: 0;
    left: 75%;
    width: calc( 25% + 0.25vw);
    height: 88.65vh;
    margin-top: 0; }
    .cover-3 .cover .secondary h1 {
      font-size: 2.5vw;
      font-weight: 525;
      font-stretch: 75%; }
    .cover-3 .cover .secondary h2 {
      font-size: 1.45vw; }
  .cover-3 .cover .tertiary {
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 0.25vw;
    padding-top: 1vh;
    top: 78.5vh;
    width: 74.5%; }
    .cover-3 .cover .tertiary > * {
      background-color: var(--color-text);
      color: #ffffff;
      padding: 1vw; }
    .cover-3 .cover .tertiary h1 {
      font-size: 1.65vw;
      font-weight: 200;
      font-stretch: 50%; }
  .cover-3-revealed .cover .cover-3-example {
    opacity: 0;
    z-index: -1; }
  .cover-4 .cover .cover-4-example {
    opacity: 1;
    z-index: 10; }
  .cover-4 .cover .top {
    top: 0;
    width: 100%; }
    .cover-4 .cover .top .teaser figure {
      height: 70vh;
      overflow: hidden;
      width: 100%;
      z-index: 0; }
      .cover-4 .cover .top .teaser figure img {
        margin-top: -2.5%;
        filter: none; }
    .cover-4 .cover .top .teaser h1 {
      color: #6c776c;
      mix-blend-mode: difference;
      font-family: Obviously;
      font-size: 16vw;
      font-weight: 800;
      font-stretch: 280%;
      left: 0.5%;
      bottom: 15%;
      text-shadow: -0.1vw -0.1vw 2vw rgba(255, 255, 255, 0.5), 0.1vw 0.1vw 0.1vw rgba(255, 255, 255, 0.85);
      text-transform: uppercase;
      width: 65%; }
    .cover-4 .cover .top .teaser h2 {
      color: #ffffff;
      font-size: 2.5vw;
      font-weight: 750;
      font-stretch: 85%;
      left: 2.5%;
      bottom: 2.5%;
      text-shadow: -0.1vw -0.1vw 2vw rgba(0, 0, 0, 0.5), 0.1vw 0.1vw 0.1vw rgba(0, 0, 0, 0.75);
      width: 65%; }
  .cover-4 .cover .secondary {
    background-color: transparent;
    border-right: none;
    border-top: none;
    color: #ffffff;
    column-gap: 0.5vw;
    grid-auto-flow: column;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0;
    top: 70vh;
    left: 0%;
    width: 74.5%;
    height: 26vh;
    margin-top: 1vh; }
    .cover-4 .cover .secondary > * {
      background-color: #5a5a64;
      padding: 1vw; }
    .cover-4 .cover .secondary h1 {
      font-size: 2.5vw;
      font-weight: 525;
      font-stretch: 50%; }
    .cover-4 .cover .secondary h2 {
      font-size: 1.45vw; }
  .cover-4 .cover .tertiary {
    border-top: none;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    column-gap: 0.25vw;
    margin-top: 0;
    padding-top: 1vh;
    top: 70vh;
    width: 25%;
    left: 75%; }
    .cover-4 .cover .tertiary > * {
      background-color: var(--color-text);
      color: #ffffff;
      padding: 1vw; }
    .cover-4 .cover .tertiary h1 {
      font-size: 1.65vw;
      font-weight: 200;
      font-stretch: 50%; }
  .cover-4-revealed .cover .cover-4-example {
    opacity: 0;
    z-index: -1; }

.story header {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 2.5vw;
  align-items: center; }
  .story header h1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2; }
  .story header h2 {
    font-size: 3vw;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    max-width: 65vw;
    margin: 2vh 0; }
  .story header figure {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    width: 15vw; }

.story p {
  font-size: 1.5vw;
  max-width: 65vw;
  text-align: left;
  margin: 0 0 0 17.5vw; }
  .story p + p {
    margin-top: 2vh; }

.story-2 .story header {
  display: inline;
  position: relative; }

.story-2 .story h1 {
  font-weight: 100;
  font-stretch: 50%;
  font-size: 10vw;
  height: 20vh;
  margin-top: -20vh;
  position: relative;
  z-index: 1; }

.story-2 .story h2 {
  float: left;
  width: 48%; }

.story-2 .story figure {
  width: 100%;
  height: 30vh;
  overflow: hidden;
  position: relative;
  z-index: 0; }
  .story-2 .story figure img {
    margin-top: -15vh; }

.story-2 .story header + p {
  margin-top: 1.5vh; }

.story-3 .story header {
  display: block;
  min-height: 40vh;
  position: relative;
  text-align: left; }

.story-3 .story h1 {
  display: inline;
  font-weight: 665;
  font-stretch: 50%;
  font-size: 12vw;
  height: auto;
  margin-top: 0;
  margin-right: 2vw;
  position: relative;
  float: left;
  z-index: 1;
  shape-outside: polygon(0px 0px, 27vw 0px, 27vw 55%, 47vw 55%, 47vw 100%, 0 100%);
  width: 50%;
  line-height: 0.825; }

.story-3 .story h2 {
  position: relative;
  font-size: 4.75vw;
  font-weight: 300;
  line-height: 1.1;
  padding-right: 2.5vw;
  display: inline;
  float: none;
  text-align: left;
  z-index: 1;
  font-variation-settings: 'ital' 0; }

.story-3 .story figure {
  width: 100%;
  height: 40vh;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0; }
  .story-3 .story figure img {
    margin-top: -15vh; }

.story-3 .story header + p {
  margin-top: 2.5vh;
  font-size: 2vw;
  font-weight: 240; }
  .story-3 .story header + p:first-line {
    font-weight: 550;
    font-variant-caps: small-caps; }

.story-4 .story header {
  display: block;
  min-height: 40vh;
  position: relative;
  text-align: right; }

.story-4 .story h1 {
  display: inline;
  font-weight: 165;
  font-stretch: 50%;
  font-size: 12vw;
  height: auto;
  margin-top: 0;
  margin-right: 2vw;
  position: relative;
  float: left;
  z-index: 1;
  shape-outside: none;
  writing-mode: vertical-rl;
  line-height: 0.825;
  width: auto; }

.story-4 .story h2 {
  position: relative;
  font-size: 4.15vw;
  font-weight: 300;
  line-height: 1.75;
  padding: 0;
  display: inline-block;
  float: none;
  margin: 0 1.5vw 0 0;
  text-align: right;
  z-index: 1;
  font-variation-settings: 'ital' 125;
  width: 70%; }

.story-4 .story figure {
  margin-left: 20vw;
  width: calc( 100% - 20vw);
  height: 40vh;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0; }
  .story-4 .story figure img {
    margin-top: -15vh;
    filter: url(#graytone); }

.story-4 .story header + p {
  margin-top: 2.5vh;
  font-size: 2vw;
  font-weight: 240;
  font-stretch: 60%; }
  .story-4 .story header + p:first-line {
    font-weight: 550;
    font-variant-caps: small-caps; }

.story-4 .story p {
  margin-left: 20vw; }

.showcode > * {
  position: relative; }

.showcode > *:before,
.showcode > *:after {
  color: var(--color-text);
  font-family: "Recursive";
  font-weight: 300;
  font-variation-settings: 'MONO' 1;
  font-size: 1.5vw;
  opacity: 0.25;
  letter-spacing: normal;
  text-transform: none;
  word-spacing: normal; }

.showcode > *:before {
  position: absolute;
  bottom: 35%;
  left: -4.5vw;
  text-align: right; }

.showcode > *:after {
  position: absolute;
  bottom: 35%;
  right: -4.5vw;
  text-align: left; }

.showcode h1:before {
  content: "<h1>"; }

.showcode h1:after {
  content: "</h1>"; }

.showcode h2:before {
  content: "<h2>"; }

.showcode h2:after {
  content: "</h2>"; }

.showcode cite:before {
  content: "<cite>";
  bottom: 25%; }

.showcode cite {
  display: inline-block;
  width: none; }

.showcode cite:after {
  content: "</cite>";
  bottom: 25%; }
