/*
 * Application-wide base styles. Design tokens live in tokens.css; every file in
 * this directory is bundled by `stylesheet_link_tag :app`.
 */

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
  /* Numbers line up in columns everywhere in this app. */
  font-variant-numeric: tabular-nums;
}

a {
  color: var(--accent);
}

.page {
  max-width: 480px;
  margin: 0 auto;
  padding: 20px 16px 40px;
}

/* Brand wordmark (app/views/shared/_brand.html.erb). */
.brand {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
}

.brand__trail {
  color: var(--accent);
}

.home__heading {
  margin: 28px 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

.home__body {
  margin: 0 0 20px;
  color: var(--ink-soft);
}

.home__status {
  color: var(--muted);
  font-size: 12.5px;
}
