:root {
  color-scheme: dark;
  background: #474846;
  color: #5cdaa1;
  font-family: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100svh;
  background:
    radial-gradient(circle at 50% 44%, rgba(92, 218, 161, 0.055), transparent 38rem),
    #474846;
}

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

h1 {
  display: grid;
  margin: 0;
  color: #5cdaa1;
  font-size: clamp(4.25rem, 12.5vw, 10rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.84;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 420px) {
  h1 {
    font-size: clamp(3.8rem, 22vw, 5.5rem);
    line-height: 0.76;
  }
}
