:root {
  color-scheme: light;
  background: #fbf6f5;
  color: #b94c45;
  font-family: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #fbf6f5;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #fbf6f5;
}

.landing {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
}

.poster {
  width: min(100%, 1180px);
  margin: 0;
  display: grid;
  place-items: center;
}

.poster img {
  display: block;
  width: 100%;
  max-height: calc(100vh - clamp(36px, 8vw, 112px));
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(97, 43, 37, 0.1));
}

.poster figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-aspect-ratio: 3 / 4) {
  .landing {
    align-items: start;
    padding: 18px;
  }

  .poster img {
    max-height: none;
  }
}
