@font-face {
  font-family: "Latitude";
  src: url("fonts/Latitude-Regular.woff2") format("woff2"), url("fonts/Latitude-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Director";
  src: url("fonts/Director-Regular.woff2") format("woff2"), url("fonts/Director-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Abordage";
  src: url("fonts/Abordage-Regular.woff2") format("woff2"), url("fonts/Abordage-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Basalte Fond";
  src: url("fonts/Basalte-Fond.woff2") format("woff2"), url("fonts/Basalte-Fond.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Equateur";
  src: url("fonts/Equateur-Regular.woff2") format("woff2"), url("fonts/Equateur-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --color: #4d4d4d;
  --dark: #242424;
}

body {
  background: var(--dark);
  color: var(--color);
  overflow: hidden;
}

#essay {
  width: 15000px;
  height: 10000px;
  top: 0;
  left: 0;
  padding: 1rem;
}

#essay span {
  position: absolute;
  padding: 0.5rem;
  background: var(--color);
  transition: background 120ms linear;
  color: var(--dark);
  border-radius: 8px;
  z-index: 10;
  display: inline;
  min-width: 20px;
  width: 100%;
}

#image {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-self: center;
  mix-blend-mode: exclusion;
}
#image .bg {
  align-self: center;
  transition: background 400ms linear;
}
#image img {
  position: relative;
  width: 90%;
  height: 90%;
  filter: contrast(2) brightness(0.2) grayscale(1);
  mix-blend-mode: overlay;
}

.img {
  position: fixed;
  z-index: 50;
}

.title {
  font-size: 2.5rem;
}

#chapter {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  transition: filter 3s linear;
}
#chapter span {
  padding: 1.5rem;
  box-sizing: border-box;
  text-align: center;
  font-family: "Latitude";
  color: var(--color);
  line-height: 80%;
  text-transform: uppercase;
  font-size: 5.4rem;
  transition: color 400ms linear, text-shadow 400ms linear;
  word-break: break-word;
  hyphens: auto;
}
#chapter span[title] {
  max-width: 90%;
  font-size: 6.2rem;
  margin: 0 auto;
}
#chapter span[chapter] {
  font-size: 2.5rem;
  width: 85%;
  padding: 1rem;
  margin: 0 auto;
}

.blurIn {
  animation: blurIn 2s ease-in normal forwards;
}

@keyframes blurIn {
  from {
    filter: blur(6px);
  }
  to {
    filter: blur(0px);
  }
}

/*# sourceMappingURL=styling.css.map */
