@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. */
  --ellen-background: #3b185f;
  --ellen-message: #d8b4fe;
}

* {
  box-sizing: border-box;
}

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

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

main {
  max-width: 100%;
  padding: 2rem;
  text-align: center;
}

h1 {
  margin: 0;
  font-family: "Winky Sans", sans-serif;
  font-size: clamp(3rem, 11vw, 9rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
