:root {
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #18201d;
  background: #f3f5f2;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  min-width: 320px;
}

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

.site-status {
  width: min(100% - 2rem, 64rem);
  margin-inline: auto;
  display: grid;
  place-items: center;
  padding-block: clamp(3rem, 10vw, 8rem);
}

.status-card {
  width: min(100%, 44rem);
  padding: clamp(2rem, 7vw, 5rem);
  border: 1px solid #d9ded9;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 1.5rem 4rem rgb(20 32 26 / 8%);
}

.site-name {
  margin: 0 0 1.5rem;
  color: #42634f;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.25rem, 8vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.status-copy {
  max-width: 34rem;
  margin: 1.75rem 0 0;
  color: #52605a;
  font-size: clamp(1rem, 2.5vw, 1.125rem);
  line-height: 1.65;
}

.site-footer {
  padding: 0 1rem 1.5rem;
  color: #69756f;
  text-align: center;
}

@media (max-width: 30rem) {
  .site-status {
    width: min(100% - 1rem, 64rem);
  }

  .status-card {
    border-radius: 0.75rem;
  }
}
