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

:root {
  --bg: #f5f5f5;
  --text: #18181a;
  --text-muted: #05050560;
  --accent: #3f3f3f;
  --border: #0505051d;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #18181a;
    --text: #ededed;
    --text-muted: #ededed60;
    --accent: #aaaaaa;
    --border: #ededed10;
  }
}

body {
  background: var(--bg);
  color: var(--text-muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

main {
  max-width: 960px;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 4rem 2rem;
}

h1 {
  color: var(--text);
}

.button {
  display: inline-block;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  background-color: var(--text);
  color: var(--bg);
  text-decoration: none;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}
