:root {
  color: #25272a;
  background: #f7f7f6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 280px;
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 32px;
}

.notice {
  width: min(100%, 620px);
  padding: clamp(36px, 8vw, 72px);
  border: 1px solid #dededb;
  background: #fff;
  box-shadow: 0 8px 30px rgb(20 24 28 / 4%);
}

.eyebrow {
  margin: 0 0 18px;
  color: #777b80;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 560;
  line-height: 1.3;
}

h1 + p {
  max-width: 46ch;
  margin: 22px 0 0;
  color: #62666a;
  line-height: 1.65;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 56px;
  padding-top: 16px;
  border-top: 1px solid #ececea;
  color: #92969a;
  font-size: 0.72rem;
}

.status-dot {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 6px solid transparent;
  border-radius: 50%;
  background: #a9aca8;
  background-clip: content-box;
  cursor: default;
}

.status-dot:focus-visible {
  outline: 1px solid #b8bab7;
  outline-offset: 2px;
}

@media (max-width: 520px) {
  body {
    padding: 18px;
  }

  .notice {
    padding: 34px 28px;
  }
}
