/* Local fonts */
@font-face {
  font-family: "Geist";
  src: url("./fonts/Geist-Medium.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("./fonts/GeistMono-Medium.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Responsive size */
:root {
  --fs: clamp(24px, 6vw, 38px);
}

html, body {
  height: 100%;
  margin: 0;
  background: #ffffff;
  color: #000000;
}

body {
  display: grid;
  place-items: center;
}

.word {
  font-size: var(--fs);
  line-height: 1;
  white-space: nowrap;
  user-select: none;
}

.f1 {
  font-family: "Geist", sans-serif;
}

.f2 {
  font-family: "Geist Mono", monospace;
}