:root {
  --color-bg: #E6E2E0;
  --color-accent: #444444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 33svh;
  background-color: var(--color-bg);
  font-family: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  text-align: center;
}

h1 {
  color: var(--color-accent);
  font-weight: 600;
  font-size: clamp(1.75rem, 6vw, 3.5rem);
  line-height: 1.2;
}
