@font-face {
  font-family: "N-Gage";
  src: url("assets/fonts/n-gage.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu Mono";
  src:
    url("assets/fonts/UbuntuMono-Regular.woff2") format("woff2"),
    url("assets/fonts/UbuntuMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  color: #111;
  font-family: "Ubuntu Mono", monospace;
  background: #fff;
}

main {
  min-height: 100vh;
  padding-top: 48px;
  text-align: center;
}

h1 {
  margin: 0;
  font-family: "N-Gage", "Ubuntu Mono", monospace;
  font-size: clamp(1rem, 2.4vw, 1.38rem);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dump-dot {
  display: block;
  width: 0.52rem;
  height: 0.52rem;
  margin: 0.82rem auto 0;
  border-radius: 50%;
  background: #111;
  text-decoration: none;
  transition:
    background-color 160ms ease;
}

.dump-dot:hover,
.dump-dot:focus-visible {
  background: #f7f7f7;
  outline: none;
}
