@font-face {
  font-family: "GT Mechanik Semi";
  src:
    url("assets/fonts/GT-Mechanik-Semi-Medium.woff2") format("woff2"),
    url("assets/fonts/GT-Mechanik-Semi-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #222222;
  --muted: #b8b8b8;
  --border: #dfdfdf;
  --canvas-width: 1280;
  --canvas-height: 1040;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #ffffff;
  color: var(--ink);
  font-family: "GT Mechanik Semi", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
}

.brand {
  position: absolute;
  top: calc(422 / var(--canvas-height) * 100%);
  left: 50%;
  display: flex;
  width: min(260px, calc(100vw - 48px));
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-mark {
  width: 84px;
  height: 85px;
  display: block;
}

h1,
p {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  margin-top: 30px;
  font-size: 26px;
  line-height: 35px;
}

p {
  margin-top: 12px;
  font-size: 15px;
  line-height: 19px;
  color: var(--muted);
}

footer {
  position: absolute;
  bottom: calc(48 / var(--canvas-height) * 100%);
  left: 50%;
  width: min(260px, calc(100vw - 48px));
  transform: translateX(-50%);
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  text-align: center;
  color: var(--muted);
}

footer a {
  color: inherit;
  text-decoration: none;
  transition: color 160ms ease;
}

footer a:hover {
  color: #8f8f8f;
}

@media (max-height: 720px) {
  .brand {
    top: 28%;
  }

  footer {
    bottom: 32px;
  }
}

@media (max-width: 480px) {
  .landing {
    border: 0;
  }

  .brand {
    top: 36%;
  }
}
