@font-face {
  font-family: "Ui Serif";
  src: url("./fonts/type-1.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ui Serif";
  src: url("./fonts/type-5.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-primary: #851333;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--color-primary);
  color: #fff;
  font-family: "Ui Serif", Georgia, "Times New Roman", serif;
}

main {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 8vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: center;
}
