:root {
  --night: #140A22;
  --veil: rgba(20, 10, 34, 0.55);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background-color: var(--night);
}

.holding {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vh, 56px);

  min-height: 100dvh;
  padding: 48px 24px;
  text-align: center;

  /* Veil first, photo second: the gradient paints on top of the background image. */
  background-image:
    linear-gradient(var(--veil), var(--veil)),
    url("assets/fondo.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.holding__logo {
  display: block;
  width: 60vw;
  max-width: 420px;
  height: auto;
}

.holding__photo {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
}

.holding__title {
  margin: 0;
  max-width: min(26ch, 100%);

  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FFFFFF;

  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}
