:root {
  --main-bg-color: #101010;
  --dark-gray: #666;
  --main-font-color: #e0e0e0;
  --highlight-color: #16636d;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: "JetBrains Mono", monospace;
  font-weight: 300;
  line-height: 1.45;
}

body {
  margin: 0;
  padding: 0;
  background: var(--main-bg-color);
}

body.landing-page {
  color: var(--main-font-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background: rgb(2, 0, 36);
  background: linear-gradient(0deg, rgb(2, 0, 36) 0%, rgb(3, 23, 69) 35%, rgb(0, 9, 43) 100%);
  background-size: 200% 200%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#brand {
  font-weight: 600;
}

span.cursor {
  display: inline-block;
  color: inherit;
  margin-left: 0.1rem;
  width: 0.8em;
  text-align: center;
  overflow: visible;
  animation: blink 1s infinite;
}
span.cursor.typing {
  animation: none;
}

@keyframes blink {
  0% {
    color: inherit;
  }
  49% {
    color: inherit;
  }
  50% {
    color: transparent;
  }
  99% {
    color: transparent;
  }
  100% {
    color: inherit;
  }
}
.claim {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
}
.claim div {
  max-width: 26ch;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: sans-serif;
  letter-spacing: 0.05em;
  color: var(--main-font-color);
}

h4,
p {
  margin-block-start: 0.25em;
  margin-block-end: 0.25em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.scroll-document .header {
  position: fixed;
  padding: 6px;
  top: 0;
  z-index: 1;
  width: 100%;
}
.scroll-document .progress-container {
  width: 100%;
  background: gray;
  height: 2px;
}
.scroll-document .progress-bar {
  height: 2px;
  position: relative;
  border-radius: 100vw;
  background: white;
  width: 0%;
}
.scroll-document .progress-bar:after {
  content: "";
  position: absolute;
  right: 0;
  top: -3px;
  width: 1px;
  height: 8px;
  background-color: var(--main-font-color);
}
.scroll-document .content {
  padding: 100px 0;
  margin: 50px auto 0 auto;
  width: 80%;
}
.scroll-document main {
  width: 100%;
  height: 100vh;
  height: 100svh;
  scroll-snap-points-y: repeat(300px);
  scroll-snap-type: y mandatory;
  scroll-snap-type: mandatory;
  overflow: auto;
}
.scroll-document main::-webkit-scrollbar {
  display: none;
}
.scroll-document main {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scroll-document section {
  position: sticky;
  top: 0;
  padding: 3vw;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  height: 100svh;
  scroll-snap-align: start;
}
@media not all and (hover: none) {
  .scroll-document section {
    scroll-snap-align: none;
  }
}
.scroll-document img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
  display: block;
}
.scroll-document section.source {
  background: var(--main-bg-color);
  color: var(--main-font-color);
  padding: 20px;
  height: auto;
  justify-items: flex-start;
  align-items: start;
  flex-direction: column;
  gap: 0.35rem;
}
.scroll-document footer {
  font-size: 0.75rem;
  margin-top: 3rem;
  color: var(--dark-gray);
}/*# sourceMappingURL=mood.history.digital.css.map */