:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #141414;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

.holding-page {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 28px;
  min-height: 100vh;
  min-height: 100svh;
  padding: 32px 24px;
}

.holding-page__photo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: calc(100vh - 140px);
  max-height: calc(100svh - 140px);
  object-fit: contain;
}

h1 {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-align: center;
  text-wrap: balance;
}
