@font-face {
  font-family: "Area";
  src: url("Area-Light.woff2") format("woff2"),
    url("Area-Light.woff") format("woff"),
    url("Area-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABCDiatype Light";
  src: url("ABCDiatype-Light-Trial.woff2") format("woff2"),
    url("ABCDiatype-Light-Trial.woff2.woff") format("woff"),
    url("ABCDiatype-Light-Trial.woff2.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: black;
  color: white;
  font-size: 16px;
  line-height: 20px;
  font-family: "ABCDiatype Light", Arial, sans-serif;
  text-align: center;
  font-weight: 300;
}

h1 {
  font-weight: 300;
  font-size: 20px;
}

p:not(:first-of-type) {
  margin-top: 1rem;
}

.slideshow-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.quote {
  font-style: italic;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s;
  background-size: cover;
  background-position: center;
}

.slide.active {
  opacity: 1;
}

.text-overlay {
  position: absolute;
  text-align: left;
  mix-blend-mode: exclusion;
  top: 1rem;
  left: 1rem;
  width: 400px;
}

a {
  color: inherit;
}
