@font-face {
  font-family: "Geist";
  src: url("./fonts/Geist-var.woff2") format("woff2"),
    url("./fonts/Geist.woff2") format("woff2-variations");
  font-weight: 100 900;
}

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

:root {
  --font-fallback: BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu",
    "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-sans;
}

body {
  font-family: "Geist", var(--font-fallback);
}

main {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
