@font-face {
  font-family: "Winky Sans";
  src: url("/fonts/winky-sans-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  /* The two colours to tweak. */
  --snorland-background: #204f18;
  --snorland-wordmark: #b9e673;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--snorland-background);
}

body {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: var(--snorland-background);
  color: var(--snorland-wordmark);
}

main {
  padding: 2rem;
  text-align: center;
}

h1 {
  margin: 0;
  font-family: "Winky Sans", sans-serif;
  font-size: clamp(4rem, 15vw, 12rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
