﻿:root {
  --green: #0b6b3a;
  --red: #7a1111;
  --text: #f7f7f2;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
  font-family: "Bebas Neue", "Oswald", "Impact", sans-serif;
  color: var(--text);
}

body {
  background: #0b6b3a;
}

.center {
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
}

.status {
  font-size: clamp(5rem, 18vw, 16rem);
  letter-spacing: 0.08em;
}

.meta {
  font-family: "IBM Plex Mono", "Menlo", monospace;
  margin-top: 0.5rem;
  opacity: 0.85;
}
