@font-face {
  font-family: 'Source Serif 4';
  src: url("font/SourceSerif4-Regular.woff2") format("woff2"), url("font/SourceSerif4-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap; }
@font-face {
  font-family: 'Source Serif 4';
  src: url("font/SourceSerif4-Medium.woff2") format("woff2"), url("font/SourceSerif4-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap; }
* {
  position: relative;
  font-family: "Source Serif 4";
  font-weight: normal;
  font-size: 1.0rem;
  line-height: 1.45;
  color: #1a555b;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased; }

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none; }

html {
  background-color: #fef6e6;
  overflow-x: hidden;
  width: 100vw; }
  html body {
    margin: 0;
    border: 0;
    padding: 3rem 4rem;
    overflow-x: hidden;
    width: 100vw; }
    html body.no-scroll {
      overflow: hidden; }

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center; }
  header .logo {
    height: 6.5rem;
    width: auto; }
  header nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 2rem; }
    header nav a {
      text-decoration: none;
      font-size: 1.2rem; }
      header nav a svg * {
        fill: #1a555b; }

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem; }
  footer .logo {
    mix-blend-mode: multiply;
    width: 20rem;
    height: auto; }

.intro {
  position: relative;
  margin: 4rem 0; }
  .intro h1 {
    font-size: 2.5rem;
    font-weight: bold; }
  .intro p {
    column-count: 2;
    column-gap: 4rem;
    font-size: 1.2rem; }

.credits {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem; }
  .credits span a {
    font-weight: bolder; }

.cta {
  background-color: #1a555b;
  color: white;
  display: inline-block;
  padding: 0.65rem 3rem;
  border-radius: 5rem;
  overflow: hidden;
  text-decoration: none;
  font-size: 1.3rem;
  margin-top: 2rem;
  display: inline-block; }
  .cta.left {
    display: block;
    justify-self: center;
    align-self: center;
    margin-bottom: 5rem; }

hr {
  border: 0;
  border-top: 1px solid #ff930d; }

.shelf {
  position: relative;
  padding: 6rem 2rem 10rem 2rem;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 7rem calc((100% - 70rem) / 3);
  justify-content: space-between; }
  .shelf .slot {
    position: relative; }
    .shelf .slot .bar {
      position: absolute;
      width: calc(100vw - 4rem);
      height: 2rem;
      bottom: -2rem;
      left: -2rem;
      background-color: #90572C;
      box-shadow: #543d21 2rem 1.5rem 2.5rem; }
      .shelf .slot .bar:after {
        content: " ";
        position: absolute;
        width: 100%;
        height: 0.5rem;
        bottom: -0.5rem;
        left: 0;
        background-color: #573216; }
  .shelf .book {
    position: relative;
    padding: 2rem 2rem 2rem 2.5rem;
    margin: 0 1rem;
    width: 15rem;
    height: 22rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 0.2rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    overflow: hidden;
    box-shadow: #725c41aa 1.5rem 1rem 2rem; }
    .shelf .book:after {
      content: " ";
      position: absolute;
      top: 0;
      left: 1rem;
      width: 0.25rem;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.25);
      mix-blend-mode: overlay; }
    .shelf .book:before {
      content: " ";
      position: absolute;
      top: 0;
      left: 0.75rem;
      width: 0.25rem;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.25);
      mix-blend-mode: hard-light; }
    .shelf .book .gradient {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(0deg, black 0%, white 100%);
      mix-blend-mode: hard-light;
      opacity: 0.15; }
    .shelf .book .pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      mix-blend-mode: color-burn; }
      .shelf .book .pattern img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center; }
    .shelf .book .image {
      flex-shrink: 0;
      margin-bottom: auto;
      position: relative;
      width: 8rem;
      height: 8rem;
      border-radius: 10rem;
      overflow: hidden;
      border: 0.5rem solid rgba(0, 0, 0, 0.2); }
      .shelf .book .image img {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: blur(0.35rem); }
    .shelf .book:hover {
      cursor: pointer;
      filter: saturate(1.2) brightness(1.2); }
      .shelf .book:hover img {
        filter: blur(0) brightness(0.9); }
    .shelf .book .text {
      margin-top: 3rem;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
      align-items: center;
      line-height: 1.2;
      color: white; }
      .shelf .book .text * {
        align-items: center;
        line-height: 1.2;
        font-size: 1.5rem;
        font-weight: bold;
        color: white; }

.window {
  z-index: 100;
  display: none;
  position: fixed;
  width: calc(100% - 10rem);
  height: calc(100% - 10rem);
  top: 5rem;
  left: 5rem;
  background-color: white;
  flex-direction: row;
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: #3d352c 1rem 1.5rem 3.5rem; }
  .window.show {
    display: flex; }
  .window .close {
    position: absolute;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 1.35rem;
    right: 1.35rem;
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    overflow: hidden;
    z-index: 10;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer; }
    .window .close:hover {
      transform: scale(1.1); }
  .window .info {
    width: 30rem;
    height: 100%;
    padding: 2rem;
    overflow-y: scroll;
    display: flex;
    flex-direction: column; }
    .window .info h2 {
      font-size: 2rem;
      font-weight: bold;
      line-height: 1.1;
      margin-bottom: 1rem;
      order: 2; }
    .window .info p {
      font-size: 1.1rem;
      order: 3; }
    .window .info .more {
      order: 1;
      width: 100%;
      text-align: center;
      cursor: pointer; }
      .window .info .more:hover {
        font-weight: bolder; }
    .window .info .buttons {
      position: relative;
      font-size: 1.1rem;
      margin-bottom: 3rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 0.5rem;
      order: 0; }
      .window .info .buttons:not(.open) {
        min-height: 12rem;
        overflow: hidden; }
      .window .info .buttons button {
        width: 100%;
        background-color: #1a555b;
        border: none;
        color: white;
        padding: 0.8rem 1.5rem;
        border-radius: 10rem;
        line-height: 1.1;
        font-size: 0.9rem; }
        .window .info .buttons button:hover {
          cursor: pointer;
          background-color: #163d42; }
        .window .info .buttons button.seen {
          opacity: 0.4; }
  .window .video {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: black !important; }
    .window .video video {
      background-color: black !important;
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center; }

@media (max-width: 1200px) {
  html body {
    padding: 2rem 3rem; }

  .intro {
    margin: 3rem 0; }
    .intro p {
      column-count: 1; }

  .window {
    width: calc(100% - 5rem);
    height: calc(100% - 5rem);
    top: 2.5rem;
    left: 2.5rem; }
    .window .info p {
      font-size: 0.9rem; } }
@media (max-width: 750px) {
  html body {
    padding: 2rem 1.5rem; }

  header {
    flex-direction: column; }
    header .logo {
      height: 5rem;
      margin-bottom: 1rem; }
    header nav {
      flex-wrap: wrap;
      justify-content: center; }

  footer {
    justify-content: center;
    gap: 1rem; }
    footer .logo {
      width: 30vw;
      height: auto; }

  .credits {
    flex-direction: column;
    gap: 0.5rem; }

  .intro {
    margin: 4rem 0; }
    .intro * {
      width: 100%;
      text-align: center; }

  .shelf {
    padding: 4rem 0rem 10rem 0rem;
    gap: 7rem 0rem;
    justify-content: space-around; }
    .shelf .slot .bar {
      width: calc(100vw - 4rem);
      height: 2rem;
      bottom: -2rem;
      left: -4rem; }
      .shelf .slot .bar:after {
        height: 0.5rem;
        bottom: -0.5rem;
        left: 0; }
    .shelf .book {
      margin: 0;
      width: 9.5rem;
      height: 15rem;
      padding: 1rem 1rem 0.5rem 1.5rem; }
      .shelf .book:after {
        left: 1rem;
        width: 0.25rem; }
      .shelf .book:before {
        left: 0.75rem;
        width: 0.25rem; }
      .shelf .book .image {
        width: 6.5rem;
        height: 6.5rem;
        border: 0.3rem solid rgba(0, 0, 0, 0.2); }
        .shelf .book .image img {
          filter: blur(0); }
      .shelf .book .text {
        margin-top: 1rem;
        gap: 0.5rem;
        font-size: 0.8rem;
        line-height: 1.1; }
        .shelf .book .text * {
          font-size: 0.8rem; }

  .window {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    flex-direction: column-reverse;
    border-radius: 0; }
    .window .info {
      width: 100%;
      display: flex;
      flex-direction: column; }
      .window .info h2 {
        font-size: 1.5rem;
        order: 2; }
      .window .info p {
        order: 3; }
      .window .info .buttons {
        order: 1;
        margin-top: 0;
        margin-bottom: 2rem; }
        .window .info .buttons:not(.open) {
          min-height: 12rem; } }

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