:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #164f8f;
  color: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #2469b5 0%, #164f8f 55%, #0b376a 100%);
}

main {
  padding: clamp(2rem, 8vw, 6rem);
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(2.6rem, 9vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}
