:root {
  --bg: #000000;
  --text: #e8dfca;
  --accent: #ff5722;
  --dim: rgba(232, 223, 202, 0.55);
}

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

html,
body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "JetBrains Mono", "IBM Plex Mono", "SF Mono", Menlo, monospace;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: 32rem;
}

h1 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
  margin-bottom: 2.5rem;
}

.primary {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.secondary {
  font-size: 0.95rem;
  color: var(--dim);
}

.now {
  font-size: 0.95rem;
  color: var(--dim);
  margin-top: 2.5rem;
  line-height: 1.7;
  max-width: 28rem;
}

@media (max-width: 600px) {
  body {
    font-size: 14px;
  }
}
