:root {
  color-scheme: light;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  color: #17231f;
  background: #f7f8f5;
}

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
}

main {
  width: min(680px, calc(100% - 40px));
  margin: auto;
  padding: 48px 0;
}

.status {
  width: fit-content;
  margin: 0 0 16px;
  padding: 5px 9px;
  border: 1px solid #b8c9c1;
  color: #27644f;
  font-size: 14px;
  font-weight: 600;
}

h1 {
  margin: 0 0 18px;
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  max-width: 620px;
  margin: 0;
  color: #4c5a55;
  font-size: 17px;
  line-height: 1.8;
}

footer {
  padding: 20px;
  border-top: 1px solid #dfe5e1;
  text-align: center;
}

footer a {
  color: #3f5e52;
  font-size: 14px;
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 560px) {
  h1 {
    font-size: 32px;
  }
}
