:root {
  color-scheme: light dark;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f3f5f7;
  color: #263238;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
}

main {
  width: min(32rem, calc(100% - 3rem));
  padding: 2.5rem;
  border: 1px solid #dce2e6;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1rem 2.5rem rgb(38 50 56 / 8%);
}

h1 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  font-weight: 600;
}

p {
  margin: 0;
  color: #60727c;
}

.status {
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: #2eae67;
}

@media (prefers-color-scheme: dark) {
  :root {
    background: #121719;
    color: #e9eff2;
  }

  main {
    border-color: #2a3439;
    background: #1a2124;
    box-shadow: none;
  }

  p {
    color: #a7b5bc;
  }
}
