/* Standalone document pages — the privacy policy and the password-reset form.
   Not game screens, so they opt out of the play area's aspect lock and read
   like a page of text at any width.

   base.css pins html and body to height:100% with overflow:hidden, which is
   right for the game — its play area is a fixed, letterboxed box and the page
   behind it must never scroll. On a page of prose that same rule silently
   clips everything below the fold with no way to reach it. These four lines
   are what let a long document scroll.

   Unconditional rather than scoped to a class: this stylesheet is only ever
   loaded by those document pages, so there is nothing here for it to leak
   onto. */
html,
body {
  height: auto;
  min-height: 100%;
  overflow: visible;
}
.privacy-page {
  max-width: 44rem;
  margin: 0 auto;
  padding: 3rem 1.5rem 6rem;
  color: #f7f3ec;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}

.privacy-page h1 {
  font-size: 2.1rem;
  margin: 0.5rem 0 0.25rem;
}

.privacy-page h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 0.75rem;
}

.privacy-updated {
  margin: 0 0 2rem;
  opacity: 0.6;
  font-size: 0.95rem;
}

.privacy-lede {
  font-size: 1.15rem;
  opacity: 0.95;
}

.privacy-page ul {
  padding-left: 1.4rem;
}

.privacy-page li {
  margin-bottom: 0.5rem;
}

.privacy-page a {
  color: #9ecbff;
}

.privacy-back-link {
  display: inline-block;
  margin-bottom: 1rem;
  color: #f7f3ec;
  text-decoration: none;
  opacity: 0.75;
}

.privacy-back-link:hover {
  opacity: 1;
}
