:root {
  --bg: #000000;
  --fg: #f2f2f2;
  --muted: #d8d8d8;
  --link: #9ecbff;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: Georgia, "Times New Roman", serif;
}

body {
  min-height: 100vh;
}

.placeholder-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
}

.hero-figure {
  margin: 0;
  max-width: 960px;
  width: min(100%, 960px);
  text-align: center;
}

.hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}

.hero-figure figcaption {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
}

.hero-figure a,
.hero-figure a:visited {
  color: var(--link);
}

.hero-figure a:hover,
.hero-figure a:focus {
  color: #c7e0ff;
}

.status {
  margin: 1.75rem 0 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 700px) {
  .placeholder-page {
    padding: 1rem;
  }

  .hero-figure figcaption,
  .status {
    font-size: 0.98rem;
  }
}
