:root {
  color-scheme: light;
  --bg: #ffffff;
  --text: #111111;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: "Courier New", monospace;
  color: var(--text);
  background: var(--bg);
}

.countdown-page {
  text-align: center;
}

.title {
  margin: 0 0 12px;
  font-size: 2rem;
  text-transform: lowercase;
}

.countdown {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.6;
}
