@font-face {
  font-family: "Special Elite";
  src: url("/assets/fonts/SpecialElite-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Crimson Pro";
  src: url("/assets/fonts/CrimsonPro-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 900;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/IBMPlexSans-VariableFont_wdth.ttf") format("truetype");
  font-weight: 100 700;
  font-display: swap;
  font-style: normal;
}
.page-title {
  font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-size: 2.5rem;
  color: white;
  text-align: center;
  margin-top: 2rem;
}
.page-title span {
  color: rgb(255, 0, 0);
}

.nav-tags {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.nav-tag {
  text-decoration: none;
  color: white;
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 1.3rem;
  margin-top: 1rem;
  transition: all 0.2s ease-in-out;
}
.nav-tag:hover {
  color: rgb(255, 0, 0);
}

.sec-nav {
  margin: 0 auto;
  width: 95%;
  max-width: 1440px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 768px) {
  .nav-tag {
    font-size: 1.2rem;
    margin-top: 0.4rem;
  }
  .nav-tags {
    width: 100%;
    justify-content: center;
    gap: 1.3rem;
  }
  .page-title {
    font-size: 1.9rem;
  }
}
.archive-main {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin-bottom: auto;
}

.archive-holder {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 10rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 5rem;
}

.archive {
  margin: auto 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@keyframes fadeInWord {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.archive-content {
  margin-bottom: 2rem;
}
.archive-content p {
  color: white;
  font-family: "Crimson Pro", serif;
  font-size: 1.5rem;
  text-align: center;
  line-height: 1.5;
  word-spacing: 0.2rem;
  cursor: help;
}
.archive-content span {
  transition: all 0.2s ease-in-out;
  opacity: 0;
  transform: translateY(5px);
  animation: fadeInWord 1s ease forwards;
  animation-delay: calc(var(--i) * 0.1s);
}
.archive-content span:hover {
  color: rgb(255, 0, 0);
}

.archive-author {
  color: white;
  font-family: "Crimson Pro", serif;
  font-style: italic;
  font-size: 1.3rem;
  text-align: center;
}

@media (max-width: 768px) {
  .archive-holder {
    margin-top: 5rem;
  }
  .archive-content {
    margin-bottom: 2rem;
  }
  .archive-content p {
    font-size: 1.3rem;
    line-height: 1.5;
    word-spacing: 0.2rem;
  }
  .archive-author {
    font-size: 1.1rem;
  }
}
.artefacts {
  width: 100%;
  max-width: 1440px;
  margin: 6rem auto 0 auto;
}

.artefact {
  width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.04);
  -webkit-mask-image: url(/assets/images/decorations/image-mask.png);
  mask-image: url(/assets/images/decorations/image-mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: center;
          mask-position: center;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 3rem 3rem;
  gap: 3rem;
  transition: background-color 1s ease-in-out;
}
.artefact:hover {
  background-color: hsla(0, 100%, 50%, 0.07);
}

.artefact-image {
  width: 31%;
  height: auto;
  cursor: pointer;
}

.artefact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
}

.artefact-title {
  font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: white;
  text-align: left;
}

.artefact-description {
  font-family: "Crimson Pro", serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.5;
  word-spacing: 0.1rem;
  text-align: left;
  color: white;
}

.artefact-image-cap {
  width: 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.3rem;
}
.artefact-image-cap img {
  width: 100%;
  cursor: pointer;
}
.artefact-image-cap p {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  text-align: center;
  color: white;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 3rem 3rem;
  box-sizing: border-box;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}
.overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.9;
  background-image: url("/assets/images/mesh-gradient.svg");
  background-size: contain;
  background-position: center;
  -webkit-mask-image: url(/assets/images/decorations/image-mask.png);
  mask-image: url(/assets/images/decorations/image-mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: center;
          mask-position: center;
}

.img-board {
  display: inline-flex;
  max-width: 95vw;
  max-height: 95vh;
  max-height: 95dvh;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.fullscreen-img {
  max-width: 90vw;
  max-height: 90vh;
  max-height: 90dvh;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  box-sizing: border-box;
}

.close-preview {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(5px, 10px);
  margin: 1rem;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-family: "Crimson Pro", serif;
  background-color: transparent;
  border: none;
  width: 70px;
  aspect-ratio: 1/1;
}
.close-preview img {
  width: 100%;
  transition: all 0.2s ease-in-out;
}
.close-preview:hover img {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7058823529)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.7058823529)) drop-shadow(0 0 15px rgba(255, 255, 255, 0.7058823529));
}

.hidden {
  display: none;
}

@media (max-width: 768px) {
  .artefacts {
    margin-top: 3rem;
  }
  .artefact {
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem;
    gap: 2rem;
  }
  .artefact-image {
    width: 80%;
  }
  .artefact-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .artefact-description {
    font-size: 1.1rem;
    line-height: 1.2;
  }
  .artefact-image-cap {
    width: 80%;
  }
  .close-preview {
    width: 50px;
  }
}
.historical-accounts {
  width: 95%;
  max-width: 1440px;
  margin: 0.5rem auto 0 auto;
}

.accounts-description {
  width: 100%;
}
.accounts-description p {
  font-size: 1.3rem;
  color: white;
  line-height: 1.4;
  margin: 2rem 0;
  font-family: "Crimson Pro", serif;
  cursor: help;
}
.accounts-description span {
  transition: all 0.2s ease-in-out;
}
.accounts-description span:hover {
  color: rgb(255, 0, 0);
}

.entries {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  margin-top: 5rem;
}

.entry {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}

.entry-title {
  width: 100%;
}
.entry-title a {
  text-decoration: none;
  color: white;
  font-size: 1.4rem;
  font-family: "Special Elite", system-ui;
  transition: all 0.2s ease-in-out;
}
.entry-title a:hover {
  color: rgb(255, 0, 0);
}

.entry-content {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
}

.entry-description {
  flex: 1;
  background-color: rgba(255, 255, 255, 0.04);
  -webkit-mask-image: url(/assets/images/decorations/image-mask.png);
  mask-image: url(/assets/images/decorations/image-mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  -webkit-mask-position: center;
          mask-position: center;
  padding: 3rem 3rem;
}
.entry-description p {
  font-size: 1.3rem;
  color: white;
  font-family: "Crimson Pro", serif;
  line-height: 1.4;
  text-align: left;
  margin: 0.5rem 0;
}
.entry-description img {
  float: left;
  max-width: 80%;
  max-height: 600px;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .historical-accounts {
    margin: 0.5rem auto 0 auto;
  }
  .accounts-description p {
    font-size: 1.2rem;
    margin: 1.5rem 0;
  }
  .entries {
    margin-top: 3rem;
  }
  .entry {
    flex-direction: column;
    justify-content: flex-start;
  }
  .entry-title a {
    font-size: 1.2rem;
  }
  .entry-description {
    padding: 3rem 2rem;
  }
  .entry-description p {
    font-size: 1.2rem;
    margin: 0.3rem 0;
  }
  .entry-description img {
    float: none;
    display: block;
    margin: 0 auto 15px auto;
  }
}
.footer {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 2rem;
  box-sizing: border-box;
  padding: 0.5rem 0;
}

.footer-mail {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  color: rgb(255, 0, 0);
  text-decoration: underline;
  transition: all 0.2s ease-in-out;
}
.footer-mail:hover {
  color: white;
}

.home-footer-mail {
  display: block;
  text-align: center;
  margin: 0.3rem auto 0.3rem auto;
  color: white;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.2s ease-in-out;
}
.home-footer-mail:hover {
  color: rgb(255, 0, 0);
}

@media (max-width: 768px) {
  .footer-mail {
    font-size: 0.9rem;
  }
}
* {
  padding: 0;
  margin: 0;
}

body {
  box-sizing: border-box;
  background-color: black;
  min-height: 100vh;
  min-height: 100dvh;
  background-image: url("/assets/images/mesh-gradient.svg");
  background-size: contain;
  background-position: center;
  display: flex;
  flex-direction: column;
}

.main {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
}

.hero {
  width: -moz-max-content;
  width: max-content;
  max-width: 70%;
  margin-top: auto;
}

.logo {
  max-width: 100%;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-family: "Special Elite", system-ui;
  font-size: 1.3rem;
  margin-top: 1rem;
  transition: all 0.2s ease-in-out;
}
.nav-link:hover {
  color: rgb(255, 0, 0);
}

.preview {
  width: 95%;
  aspect-ratio: 16/5;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: url(/assets/images/decorations/paper-landscape.png);
  mask-image: url(/assets/images/decorations/paper-landscape.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  pointer-events: none;
}

.clipped-image {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.attribution {
  margin-top: auto;
  width: 100%;
}
.attribution p {
  margin-top: 2rem;
  color: white;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 768px) {
  .preview {
    aspect-ratio: 1/1;
  }
  .clipped-image {
    width: auto;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
  .hero {
    max-width: 95%;
  }
  .navbar {
    gap: 1.5rem;
    flex-direction: column;
  }
  .nav-link {
    font-size: 1.1rem;
    margin-top: 0;
    transition: all 0.2s ease-in-out;
  }
  .nav-link:hover {
    color: rgb(255, 0, 0);
  }
  .attribution p {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }
}/*# sourceMappingURL=style.css.map */