/* ----------------------------------------------------------------
   Shared base + logo.

   The admin app loads `admin/admin.css` on top of this; the deck
   loads `deck/deck.css` on top of this. Anything specific to one of
   those goes in its own file — this stylesheet stays small and
   carries only the pieces both surfaces need (CSS reset, body font,
   FwdSteady wordmark).
   ---------------------------------------------------------------- */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  min-height: 100%;
  background: #010101;
  color: #fff;
  font-family: "Open Sans", system-ui, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ----
   Logo
   ---- */

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.logo-dots-row {
  display: flex;
  gap: 4px;
}

.logo-dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  flex-shrink: 0;
}

.logo-spacer {
  width: 12px;
  flex-shrink: 0;
}

.logo-text-forward {
  color: #dddddd;
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  flex-shrink: 0;
}

.logo-text-steady {
  color: #969595;
  font-size: 26px;
  font-weight: 600;
  line-height: 32px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .logo-dot {
    width: 9px;
    height: 9px;
  }

  .logo-spacer {
    width: 9px;
  }

  .logo-text-forward,
  .logo-text-steady {
    font-size: 20px;
    line-height: 26px;
  }
}
