:root {
  --main-font: "Times New Roman", serif;
  --font-weight: 400;
  --font-size: 1rem;
  --text-line-height: 1.2rem;
  --text-color: black;
  --selection-color: rgb(114, 114, 114);
  --selection-background: rgb(245, 245, 245);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  font-family: var(--main-font);
  font-size: var(--font-size);
  color: var(--text-color);
  line-height: var(--text-line-height);
  font-weight: var(--font-weight);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

button,
.btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

a:hover,
a.active,
button:hover,
.btn:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: Helvetica;
  src: url("/assets/fonts/");
}
html {
  overflow-x: hidden;
}

body {
  padding: 20px;
  max-width: 100vw;
  box-sizing: border-box;
}

nav {
  z-index: 1;
  position: fixed;
  top: 20px;
  left: 20px;
  width: calc(100% - 40px);
}

.language-switcher {
  z-index: 1;
  position: fixed;
  bottom: 20px;
  left: 20px;
}

.container {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30dvh;
  margin: 5dvw 0 1.5lh 0;
  pointer-events: none;
}
.container > a {
  display: flex;
  gap: 1lh;
  pointer-events: auto;
  width: var(--cover-width-mobile);
}
@media screen and (min-width: 581px) {
  .container > a {
    width: var(--cover-width-desktop);
  }
}
.container > a.cover-horizontal {
  flex-direction: row;
  flex-wrap: nowrap;
}
@media screen and (max-width: 580px) {
  .container > a.cover-horizontal {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.container > a.cover-horizontal img {
  width: 50%;
  object-fit: contain;
}
@media screen and (max-width: 580px) {
  .container > a.cover-horizontal img {
    width: 100%;
  }
}
.container > a.cover-vertical {
  flex-direction: column;
  flex-wrap: wrap;
}

.credits {
  width: 100%;
  pointer-events: auto;
  padding-top: 75dvh;
}

.intro-text-content {
  opacity: 1;
  transition: opacity 0s;
}
.intro-text-content.hidden {
  opacity: 0;
  transition: opacity 0s;
  pointer-events: none;
}

.exhibition-info {
  position: fixed;
  margin-top: 0;
  opacity: 0;
}
.exhibition-info.loaded {
  opacity: 1;
}
.exhibition-info.hidden {
  opacity: 0;
  transition: opacity 0s;
  pointer-events: none;
}

.past-curations-container {
  margin-top: 0;
  opacity: 0;
  transition: opacity 0.1s;
  display: flex;
  flex-direction: column;
  gap: 1lh;
}
.past-curations-container.loaded {
  opacity: 1;
}
.past-curations-container > a {
  align-self: flex-start;
}

.text-container {
  height: calc(100dvh - 40px);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.text-container > .exhibition-text {
  position: absolute;
  z-index: 1;
  bottom: 2.25lh;
  width: calc(100% - 40px);
}
.text-container > .exhibition-text > p:not(:last-child) {
  margin-bottom: 1lh;
}
@media screen and (max-width: 580px) {
  .text-container {
    height: auto;
    margin-top: 75dvh;
  }
  .text-container > .exhibition-text {
    position: relative;
    width: 100%;
  }
}

.exhibition-images-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 30%;
  pointer-events: none;
  margin-top: 1lh;
}
.exhibition-images-container img {
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 580px) {
  .exhibition-images-container {
    padding: 0 0 1.75lh 0;
  }
}

.exhibitions-container {
  display: flex;
  flex-direction: column;
  gap: 1lh;
  margin-top: 0;
  opacity: 0;
  transition: opacity 0.1s;
}
.exhibitions-container.loaded {
  opacity: 1;
}
.exhibitions-container > a {
  align-self: flex-start;
}

.newsletter-container {
  margin-top: 0;
  opacity: 0;
  transition: opacity 0.1s;
}
.newsletter-container.loaded {
  opacity: 1;
}
.newsletter-container .newsletter-message,
.newsletter-container .newsletter-error {
  margin-bottom: 1lh;
}
.newsletter-container .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1lh;
  max-width: 400px;
}
.newsletter-container .newsletter-form input[type=email] {
  padding: 0.25rem 0;
  font: inherit;
  border: none;
  border-bottom: 1px solid black;
  width: 100%;
  box-sizing: border-box;
}
.newsletter-container .newsletter-form input[type=email]:focus-visible, .newsletter-container .newsletter-form input[type=email]:focus {
  outline: none;
  background-color: var(--selection-background);
  border: none;
  border-bottom: 1px solid black;
  border-radius: 0;
}
.newsletter-container .newsletter-form button {
  align-self: flex-start;
}

.close-intro-text {
  pointer-events: auto;
  display: none;
}
@media screen and (max-width: 580px) {
  .close-intro-text {
    display: inline-block;
  }
  .close-intro-text.hidden {
    display: none;
  }
}

.intro-text-details {
  opacity: 1;
  transition: opacity 0s;
}
.intro-text-details.hidden {
  opacity: 0;
  transition: opacity 0s;
  pointer-events: none;
}

/*# sourceMappingURL=main.build.css.map */
