@font-face {
  font-family: "Aspekta";
  src: url("AspektaVF.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
  font-style: normal;
}

:root {
  --background: rgb(180 180 180);
  --foreground: rgb(88 88 88);
  --page-padding: clamp(24px, 6.111vw, 88px);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: "Aspekta", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-shell {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 100svh;
  padding: var(--page-padding);
  place-items: center;
}

h1 {
  margin: 0;
  color: var(--foreground);
  font-size: clamp(2.25rem, 5.56vw, 5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.brand-mark {
  position: absolute;
  right: auto;
  bottom: var(--page-padding);
  left: 50%;
  width: min(calc(100% - 2 * var(--page-padding)), 320px);
  height: auto;
  aspect-ratio: 1490 / 163;
  margin-inline: auto;
  background-color: var(--foreground);
  transform: translateX(-50%);
  -webkit-mask: url("symbol_wordmark.svg") center / contain no-repeat;
  mask: url("symbol_wordmark.svg") center / contain no-repeat;
}

@media (max-width: 600px) {
  .page-shell {
    padding-bottom: 40px;
  }

  .brand-mark {
    bottom: 40px;
    width: min(calc(100% - 48px), 320px);
  }
}
