@font-face {
  font-family: "Roboto Mono";
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url("/fonts/roboto-mono-latin.woff2") format("woff2");
  unicode-range: U+00??, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191,
    U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Roboto Mono Fallback";
  src: local("Arial");
  ascent-override: 77.84%;
  descent-override: 20.13%;
  line-gap-override: 0%;
  size-adjust: 134.61%;
}

:root {
  color-scheme: light;
  --text: #000;
  --muted: #6b7280;
  --background: #fff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: "Roboto Mono", "Roboto Mono Fallback", ui-monospace,
    SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New",
    monospace;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.brand-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0.25rem solid currentColor;
  padding: 2rem;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 100;
}

p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 300;
}

.contact-link {
  margin-top: 0.5rem;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 300;
  text-decoration: none;
}

.contact-link:hover,
.contact-link:focus-visible {
  text-decoration: underline;
}

@media (min-width: 640px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page {
    padding: 6rem;
  }

  .brand-box {
    border-width: 0.5rem;
    padding: 6rem 10rem;
  }

  h1 {
    font-size: 6rem;
  }

  p {
    margin-top: 1.5rem;
    font-size: 1rem;
  }

  .contact-link {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

@media (min-width: 1536px) {
  .brand-box {
    padding-inline: 12rem;
  }

  h1 {
    font-size: 12rem;
  }
}
