/* tokens
   background: flat white #ffffff, same field the cutout already sits on - the page is
   the image, not a frame around it
   ink: #1a1a1a caption, #6b6b6b muted
   bracket green (sampled off the art): #3f9142
   type: Arimo (bundled) for the caption/links - a plain default-web sans, the register
   an old forum image-macro post was actually typed in; Fragment Mono (bundled) for the
   ticker/CA/canary, since the CA must stay a real monospace value
   motion: none. the joke is that nothing happened, so the page does not move either
*/

@font-face { font-family:"Arimo"; src:url("assets/fonts/arimo-latin-400-normal.woff2") format("woff2"); font-weight:400; font-style:normal; font-display:swap; }
@font-face { font-family:"Arimo"; src:url("assets/fonts/arimo-latin-700-normal.woff2") format("woff2"); font-weight:700; font-style:normal; font-display:swap; }
@font-face { font-family:"Fragment Mono"; src:url("assets/fonts/fragment-mono-latin-400-normal.woff2") format("woff2"); font-weight:400; font-style:normal; font-display:swap; }

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  background: #ffffff;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 14px;
  padding: 4vh 6vw;
  font-family: "Arimo", Helvetica, Arial, sans-serif;
  color: #1a1a1a;
}

.stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  max-width: 640px;
  width: 100%;
}

.hero {
  display: block;
  width: auto;
  max-width: 100%;
  height: 62vh;
  max-height: 620px;
  object-fit: contain;
}

.caption {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #3a3a3a;
  text-align: center;
  max-width: 34ch;
}

.meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fragment Mono", monospace;
  font-size: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.ticker {
  color: #3f9142;
  font-weight: 400;
}

.sep {
  color: #b8b8b8;
}

.ca {
  font-family: "Fragment Mono", monospace;
  font-size: 14px;
  background: none;
  border: 1px solid #3f9142;
  border-radius: 3px;
  padding: 5px 9px;
  color: #1a1a1a;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.ca:hover {
  background: #f1f8f1;
}

.canary {
  margin: 0;
  font-family: "Fragment Mono", monospace;
  font-size: 12px;
  color: #9a9a9a;
}

.links {
  display: flex;
  gap: 8px;
  font-size: 13px;
}

.links a {
  color: #6b6b6b;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.links a:hover {
  border-bottom-color: #6b6b6b;
}

@media (max-width: 480px) {
  .hero { height: 52vh; }
  .caption { font-size: 15px; }
}
