/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
}

main {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
}

/* ---------- wordmark: bottom third of the screen, left-justified ---------- */
.wordmark {
  position: absolute;
  left: 0;
  top: calc(100% / 3 * 2);   /* starts at the 2/3 line */
  margin: 0;
  padding: 0 0 0 40px;
  font-size: 100px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: left;
}

@media (max-width: 700px) {
  .wordmark {
    font-size: 48px;
    padding-left: 20px;
  }
}
