* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "monotype-grotesque", sans-serif;
  background: #000;
  color: black;
  position: fixed;
  inset: 0;
}

header {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
  color: white;
  mix-blend-mode: difference;
}

h1 {
  font-size: 16px;
  font-weight: 400;
}

.gallery {
  width: 100vw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
}
.gallery img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery video {
  display: none;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

figcaption {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  font-size: 13px;
  color: white;
  mix-blend-mode: difference;
  font-weight: 300;
  letter-spacing: 0.05rem;
}
figcaption a {
  color: white;
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */