* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}
body {
  padding: 0;
  margin: 0;
  touch-action: manipulation;
  font-family: "IBM Plex Serif", Times, serif;
  font-size: 18px;
  line-height: 1.4;
  color: #393939;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body main {
  flex: 1;
}
img,
svg {
  max-width: 100%;
}
h1 {
  font-size: 44px;
  font-family: "Barlow Condensed", Helvetica, Arial, sans-serif;
}
@media (max-width: 600px) {
  h1 {
    font-size: 34px;
  }
}
h2 {
  font-size: 30px;
  font-family: "Barlow Condensed", Helvetica, Arial, sans-serif;
  font-weight: normal;
}
@media (max-width: 600px) {
  h2 {
    font-size: 24px;
  }
}
a,
a:visited {
  color: #178287;
}
a:hover,
a:active,
a:focus {
  color: #178287;
  border-bottom: none;
}
img:not([alt]) {
  outline: 3px solid red;
}
[aria-hidden] img:not([alt]),
[role="img"] img:not([alt]) {
  outline: none;
}
/* Chalkbeat header */
header.chalkbeat {
  background: black;
  color: white;
}
header.chalkbeat .cb__justified {
  padding: 16px;
  display: flex;
  margin: auto;
  max-width: 1100px;
  justify-content: space-between;
  align-items: center;
}
header.chalkbeat .cb__logo {
  max-height: 60px;
}
@media (max-width: 600px) {
  header.chalkbeat .cb__logo {
    max-width: 120px;
  }
}
header.chalkbeat .cb__buttons a {
  display: inline-block;
  padding: 10px 16px;
  color: #222222;
  text-decoration: none;
  background: #178287;
  font-family: "Barlow Condensed", Helvetica, Arial, sans-serif;
  font-size: 19px;
  font-weight: bold;
}
@media (max-width: 600px) {
  header.chalkbeat .cb__buttons a {
    padding: 8px;
    font-size: 14px;
  }
}
header.chalkbeat .cb__buttons svg {
  height: 2ch;
  vertical-align: baseline;
  display: inline-block;
}
header.chalkbeat .cb__buttons .cb__newsletters {
  background: #BD75AC;
  margin-right: 8px;
}
header.chalkbeat .cb__buttons .cb__donate {
  background: #F4C96C;
}
/* Chalkbeat footer */
footer.chalkbeat {
  background: black;
  color: white;
}
footer.chalkbeat .cb__justified {
  max-width: 1100px;
  margin: auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 600px) {
  footer.chalkbeat .cb__justified {
    display: block;
    text-align: center;
  }
}
footer.chalkbeat .cb__logo {
  max-width: 120px;
  margin-right: 20px;
}
footer.chalkbeat .cb__links {
  font-size: 14px;
}
footer.chalkbeat .cb__links a {
  margin: 0 1em;
}
:root {
  --layer-front: 999;
  --layer-back: 0;
  --layer-top: 9999;
}
.chalkbeat {
  z-index: var(--layer-top);
}
.constrain {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}
main {
  background: black;
  color: white;
}
main a {
  color: #29d3db;
}
.closing-footer {
  font-family: "Barlow Condensed", Helvetica, Arial, sans-serif;
  padding: 32px 0;
  background: #178287;
  color: white;
  z-index: var(--layer-top);
  position: relative;
}
.closing-footer .constrain {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .closing-footer .constrain {
    display: block;
  }
}
.closing-footer .footnote {
  max-width: 500px;
  padding-right: 20px;
}
.closing-footer .footnote a,
.closing-footer .footnote a:visited,
.closing-footer .footnote a:hover,
.closing-footer .footnote a:active {
  color: white;
}
.closing-footer .credits {
  min-width: 300px;
}
.closing-footer h3 {
  margin: 0 auto;
  padding: 0;
}
.closing-footer ul {
  margin: 0;
  list-style-position: inside;
  padding: 0;
}
.slide {
  overflow: hidden;
}
.slide:first-child {
  padding-top: 50vh;
}
.slide .block {
  float: right;
  background: #222D;
  color: #EEE;
  padding: 20px;
  box-shadow: 0 24px 24px -8px #0003;
  position: relative;
  clear: both;
  margin: 0 auto 95vh auto;
  z-index: var(--layer-front);
  max-width: 400px;
}
.slide .block.left {
  float: left;
}
.slide .block.center {
  float: none;
  max-width: 600px;
}
.slide .block.headline {
  float: none;
  max-width: 100%;
  text-align: center;
  text-shadow: 2px 2px 0 black, -2px -2px 0 black, 0 0 8px black;
  background: radial-gradient(farthest-side ellipse at center 60%, #000A, transparent);
  box-shadow: none;
  font-family: "Barlow Condensed", Helvetica, Arial, sans-serif;
  padding: 60px 0;
  max-width: 400px;
}
.slide .block.headline h1 {
  margin-bottom: 0;
  font-size: 32px;
}
.slide .backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  z-index: var(--layer-back);
  transition: opacity 0.3s linear;
}
.slide:not(.active, .exiting) .backdrop {
  display: none !important;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.slide.entering .backdrop {
  animation-name: fade-in;
  animation-duration: 0.6s;
  animation-timing-function: linear;
  animation-fill-mode: both;
}
.slide.exiting .backdrop {
  animation-name: fade-out;
  animation-duration: 0.6s;
  animation-timing-function: linear;
  animation-fill-mode: both;
}
.slide.image .backdrop img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide.image .backdrop img.contain {
  object-fit: contain;
}
.slide.image .backdrop.multiple {
  display: flex;
  padding: 10px;
  gap: 10px;
}
@media (max-aspect-ratio: 1 / 1) {
  .slide.image .backdrop.multiple {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
.slide.image .backdrop.multiple .image-frame {
  flex: 1;
  min-width: 0;
  position: relative;
  padding: 10px;
}
@media (max-aspect-ratio: 1 / 1) {
  .slide.image .backdrop.multiple .image-frame {
    flex: 1 0 40%;
  }
}
.slide.image .backdrop.multiple .image-frame img {
  object-fit: contain;
}
.slide.text .block {
  float: none;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  background: transparent;
  box-shadow: none;
}
