:root {
  --background-body: #fff;
  --text: #1c1d1e;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-body: #0f0f0f;
    --text: #efefef;
  }
}

html,
body {
  margin: 0;
  font-size: 12pt;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--background-body);
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: auto;
  padding: 0;
}

main {
  flex: 1;
  align-items: center;
  display: flex;
  justify-content: center;
}