:root {
  --color-primary: #1e3d58;
  --color-accent: #5290c9;
  --color-secondary: #274472;
  --color-soft: #c3e0e5;
  --color-light: #e8eef1;
}

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

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

body {
  background: var(--color-primary);
  color: var(--color-light);
}

.landing {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  padding: 2rem;
  place-items: center;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(1.65rem, 4.5vw, 3.75rem);
  font-weight: 300;
  letter-spacing: clamp(0.3em, 1.15vw, 0.62em);
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 30rem) {
  .landing {
    padding: 1.25rem;
  }

  h1 {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
    letter-spacing: 0.28em;
  }
}
