@charset "UTF-8";
@font-face {
  font-family: "Gestalt";
  src: url("../type/Gestalt-Regular.woff");
  font-style: normal;
}
@font-face {
  font-family: "Gestalt";
  src: url("../type/Gestalt-Italic.woff");
  font-style: italic;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  color: black;
}

html {
  font-size: 0.7vw;
  --large: 12.5rem;
  --big: 5.9rem;
  --main: 4.2rem;
  --small: 2rem;
}
@media (max-width: 720px) {
  html {
    font-size: 4px;
    --large: 11rem;
    --big: 5.4rem;
    --small: 3rem;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 4px;
    --big: 5rem;
  }
}

body {
  background: #ccc;
  font-family: "Gestalt";
  font-size: 1.6rem;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  counter-reset: library;
  padding: 1em;
}
body.static {
  overflow-y: hidden;
}

h1, h2, h3 {
  font-size: var(--main);
  letter-spacing: 0.05rem;
  font-weight: normal;
  line-height: 0.9;
  text-align: center;
}

h3 {
  text-align: left;
}

h2 {
  padding-top: 0.5em;
}

h1 {
  height: 100vh;
  font-size: var(--large);
  letter-spacing: -3px;
  line-height: 0.75;
  text-align: left;
  position: relative;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 720px) {
  h1 {
    line-height: 0.95;
    letter-spacing: -1px;
  }
}
h1 .result {
  font-size: var(--large) !important;
  letter-spacing: -3px;
  text-align: left;
  line-height: 0.75;
  display: inline;
  color: yellow;
}
@media (max-width: 720px) {
  h1 .result {
    line-height: 0.95 !important;
    letter-spacing: -1px;
  }
}
h1 .result:after {
  content: ".";
}
h1 .result:not(:first-of-type) {
  display: none;
}

blockquote {
  margin-left: 25%;
  max-width: 50%;
  margin-top: 3em;
}
blockquote p {
  display: inline;
}
blockquote:before {
  content: "‘";
  display: inline;
  font-size: var(--big);
}
blockquote:after {
  content: "’";
  display: inline;
  font-size: var(--big);
}

h2 {
  font-size: var(--large);
  padding-bottom: 0.5em;
}

h3 {
  font-size: var(--big);
  margin-bottom: 0.1em;
}

small {
  font-size: var(--main);
  letter-spacing: 0.05rem;
}

p, .library ol li, .tag, .people-list span {
  font-size: var(--main);
  letter-spacing: 0.05rem;
  line-height: 1.05;
  text-indent: 0;
}

.tag, .library ol li {
  line-height: 1.1;
}

p + p, .library ol li + p, .tag + p, .people-list span + p {
  text-indent: 2em;
}

.main p, .main span, .people p, .people span {
  font-size: var(--big);
  line-height: 1.1;
}

.main p a {
  text-decoration: underline;
}
.main p a:hover {
  cursor: pointer;
  color: yellow;
}

figure img {
  max-width: 100%;
  display: block;
}

.conversation {
  width: calc(70%);
  height: calc(100vh - 2em);
  position: absolute;
  right: 1em;
  top: 1em;
  background: yellow;
  border-radius: 2em;
  padding: 1.5em;
  overflow-y: auto;
}
.conversation-close {
  font-size: var(--main) !important;
  position: fixed;
  top: 1em;
  right: 1em;
}
.conversation-close:before, .conversation-close:after {
  content: "" !important;
}
.conversation-close:hover {
  color: #ccc !important;
}
.conversation p {
  font-size: var(--main);
}
.conversation h2 {
  font-size: var(--main);
  text-align: left;
  line-height: 1.1;
}
.conversation ul {
  margin-top: 2em;
  list-style: none;
}
.conversation ul li {
  max-width: 70%;
  opacity: 1;
  line-height: 1.2;
  margin-bottom: 1.1em;
}
.conversation ul li:nth-of-type(even) {
  margin-left: 25%;
}
.conversation_wrap {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transition: transform 0.7s ease-in-out;
}
.conversation_wrap:not(.visible) {
  transform: translateX(110%);
}

.bubble {
  position: fixed;
  left: 1em;
  bottom: 1em;
  width: calc(100% - 2em);
  background: yellow;
  padding: 1em;
  border-radius: 1em;
  font-size: var(--small) !important;
  line-height: 1.1 !important;
  box-shadow: 6px 2px 20px 0px rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 100;
}
.bubble:before, .bubble:after {
  content: "" !important;
}
.bubble p {
  font-size: var(--small);
  letter-spacing: 0;
  line-height: 1.1;
}

.people span:not(:first-of-type):hover, .people span:not(.bubble):hover {
  cursor: pointer;
  color: yellow;
  cursor: pointer;
}
.people span:not(:first-of-type):hover .bubble, .people span:not(.bubble):hover .bubble {
  display: block;
}

.people span:not(:last-of-type):after {
  content: ", ";
}

.tool {
  border-top: 2px solid;
  padding-bottom: 5em;
  margin-top: 3em;
}
.tool p {
  font-size: var(--main);
}
.tool p a {
  text-decoration: underline;
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.3rem;
}
.tool p a:hover {
  color: yellow;
}
.tool figure {
  margin-bottom: 3em;
}
.tool blockquote {
  max-width: 100%;
  margin-top: 1em;
}
.tool blockquote p {
  font-size: var(--small);
}
.tool blockquote:before {
  content: "";
  display: inline;
  font-size: var(--small);
}
.tool blockquote:after {
  content: "";
  display: inline;
  font-size: var(--small);
}

.people {
  border-top: 2px solid;
  padding-bottom: 3em;
  margin-top: 3em;
}
.people-list {
  padding-right: 0.25em;
}
.people .images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1em;
  margin-bottom: 5em;
  mix-blend-mode: multiply;
}
@media (max-width: 720px) {
  .people .images {
    grid-template-columns: 1fr;
  }
}
.people .images img {
  filter: grayscale(1);
}
@media (max-width: 720px) {
  .people .images img {
    padding: 1em 2em;
  }
}
.people .images figure:hover img {
  filter: grayscale(0);
}
@media (max-width: 720px) {
  .people {
    padding-top: 2.2em;
  }
}
.people h3, .people p {
  font-size: var(--main);
  letter-spacing: 0.05rem;
}
.people ol {
  margin-left: 25%;
  margin-top: 4em;
  max-width: 50%;
}
.people ol li {
  font-size: var(--main);
  letter-spacing: 0.05rem;
  pointer-events: all;
  line-height: 1.1;
  opacity: 1;
}
.people ol li:hover {
  color: yellow;
  cursor: pointer;
}
.people ol li.no-link {
  pointer-events: none;
  opacity: 0.25;
}
.people-list {
  font-size: var(--main);
  letter-spacing: 0.05rem;
}
.people span {
  font-size: var(--main);
  letter-spacing: 0.05rem;
}
.people span:last-of-type:before {
  content: " and ";
}
.people span:last-of-type:after {
  content: ".";
}

#top {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 125vh;
  mix-blend-mode: multiply;
  display: block;
  z-index: 0;
  margin-bottom: 2em;
}
#top .item {
  touch-action: none;
  box-sizing: border-box;
  filter: grayscale(1);
}
#top .item img {
  max-width: 100%;
}
#top .item figcaption {
  font-size: var(--main);
  padding-top: 0.5rem;
}
#top .item#one {
  position: absolute;
  top: 24vh;
  left: 1em;
  max-width: 42rem;
}
@media (max-width: 720px) {
  #top .item#one {
    top: 15%;
  }
}
#top .item#two {
  position: absolute;
  top: 34.75vh;
  left: 45rem;
  max-width: 33rem;
}
#top .item#three {
  position: absolute;
  top: 75vh;
  left: 11.5rem;
  max-width: 32rem;
}
@media (max-width: 720px) {
  #top .item#three {
    left: 2rem;
    max-width: 28rem;
    top: 52%;
  }
}
#top .item#four {
  position: absolute;
  bottom: -1rem;
  right: 0;
  max-width: 54rem;
}
@media (max-width: 720px) {
  #top .item#four {
    max-width: 48rem;
    bottom: 20rem;
  }
}

nav {
  width: 100%;
  position: sticky;
  top: 1em;
}
@media (max-width: 720px) {
  nav {
    top: 2em;
  }
}
nav a {
  font-size: var(--big);
  padding: 0.02em 0.4em 0.1em;
  background: #ccc;
  border-radius: 1em;
  border: 2px solid black;
  margin-right: 1rem;
}
nav a:hover {
  box-shadow: 6px 2px 40px 0px yellow;
  border: 2px solid yellow;
  color: yellow;
}

section p {
  font-size: var(--big);
}

.artworks {
  border-top: 2px solid;
  margin-top: 3em;
}
.artworks p {
  font-size: var(--main);
}
.artworks blockquote {
  max-width: 100%;
  margin-top: 1em;
}
.artworks blockquote p {
  font-size: var(--small);
}
@media (max-width: 720px) {
  .artworks blockquote p br {
    display: none;
  }
}
.artworks blockquote:before {
  content: "";
  display: inline;
  font-size: var(--small);
}
.artworks blockquote:after {
  content: "";
  display: inline;
  font-size: var(--small);
}
.artworks-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 1em;
  padding-top: 6em;
}
@media (max-width: 720px) {
  .artworks-inner {
    grid-template-columns: 1fr;
  }
}
.artworks-inner article {
  background: #ccc;
  border: 2px solid;
  border-radius: 2em;
  padding: 4em 1em;
  margin-bottom: 1em;
}
.artworks-inner article:hover {
  box-shadow: 6px 2px 40px 0px yellow;
  cursor: pointer;
  color: yellow;
}
.artworks-inner article:hover a {
  color: yellow;
}
.artworks-inner article a {
  font-size: var(--main);
  letter-spacing: 0.05rem;
  display: block;
  text-align: center;
}
@media (max-width: 720px) {
  .artworks-inner article a {
    font-size: var(--big);
  }
}

.no-link {
  pointer-events: none !important;
  cursor: default;
}

.head {
  border-top: 2px solid;
  border-bottom: 2px solid;
  padding: 0.25em 0;
  display: none;
}

.library {
  border-top: 2px solid;
  padding-top: 3em;
  margin-top: 6em;
}
.library-tags.blur {
  filter: blur(4px);
}
.library-tags .tag span.active {
  color: yellow;
}
.library-tags .tag:hover span {
  cursor: pointer;
  color: yellow;
}
.library-tags .tag sup {
  font-size: var(--small);
  line-height: 1;
  padding-left: 0.15em;
}
.library-tags .tag:not(:last-of-type):after {
  content: ", ";
}

.library-column {
  display: flex;
  flex-direction: row;
}
.library-column.blur {
  filter: blur(4px);
}
@media (max-width: 720px) {
  .library-column {
    flex-direction: column;
  }
}

.library-column div {
  flex: 1;
}
.library-column div:first-of-type {
  padding-right: 2em;
}

li {
  line-height: 1;
}
li:not(.active) {
  opacity: 0.15;
  pointer-events: none;
}

section {
  padding: 2em 1em;
}
@media (max-width: 720px) {
  section {
    padding: 0.5em;
  }
}
section.main {
  flex: 1.65;
  margin-bottom: 18em;
}
section.main p {
  letter-spacing: -1px;
  line-height: 1.075;
}
section.main p:first-of-type {
  padding-top: 3em;
}
section.people {
  padding-top: 3em;
}
section#about {
  padding-top: 3em;
}
section.next {
  position: sticky;
  top: 0.75em;
  margin-top: 4em;
}
@media (max-width: 720px) {
  section.next {
    top: 2em;
  }
}
section.next.blur {
  filter: blur(4px);
  pointer-events: none;
}
section.library, section .people {
  flex: 1.1;
}
section.library ol, section .people ol {
  padding-top: 4em;
  max-width: 92%;
}
section.library ol li, section .people ol li {
  display: flex;
  flex-direction: row;
}
section.library ol li:before, section .people ol li:before {
  counter-increment: library;
  content: counter(library, decimal-leading-zero) ". ";
  padding-right: 0.5em;
}
section.library ol li.number, section .people ol li.number {
  display: inline-block;
  padding-right: 0.5em;
}
section.library ol li.title:before, section .people ol li.title:before {
  content: "‘";
}
section.library ol li.title:after, section .people ol li.title:after {
  content: "’";
}
section.library ol li:hover span:not(.number), section .people ol li:hover span:not(.number) {
  cursor: pointer;
  color: yellow;
}

.notes {
  padding-bottom: 1em;
  padding-top: 8em;
  font-size: var(--small);
}
.notes.blur {
  filter: blur(4px);
}
.notes ol {
  padding-left: 1.5em;
}
.notes ol li {
  color: black;
  opacity: 1;
  line-height: 1.2;
  font-size: var(--small);
}
@media (max-width: 720px) {
  .notes ol li {
    line-height: 1.2;
  }
}

.title:before {
  content: "‘";
}
.title:after {
  content: "’";
}

footer {
  padding: 1em;
  padding-bottom: 0.5em;
  line-height: 1.2;
  font-size: var(--small);
}
footer.blur {
  filter: blur(4px);
}
@media (max-width: 720px) {
  footer {
    line-height: 1.2;
  }
}
footer a {
  border-bottom: 1px solid;
  font-size: var(--small);
}
footer a:hover {
  cursor: pointer;
  color: yellow;
}

.reader {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 100;
  -webkit-backdrop-filter: blur(50px);
  padding: 0.5em 1em;
  display: none;
}
@media (max-width: 720px) {
  .reader {
    overflow-y: auto;
  }
}
.reader p {
  line-height: 1.1;
}
.reader-close {
  position: fixed;
  z-index: 200;
}
.reader-close:hover {
  cursor: pointer;
  color: yellow;
}
.reader iframe {
  width: 70%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 720px) {
  .reader iframe {
    left: 0;
    transform: none;
    width: 100%;
    height: 100vh;
  }
}

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