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

body {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

main {
  text-align: center;
  padding: var(--space-8);
}

.domain {
  font-family: var(--font-mono);
  font-size: var(--text-base);
  color: var(--accent);
  margin-bottom: var(--space-3);
}

h1 {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-muted);
}
