:root {
  color-scheme: light;
  --background: #cfd3d4;
  --text: #111111;
  --muted: #2f3437;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Hiragino Sans",
    "Hiragino Kaku Gothic ProN",
    "Yu Gothic",
    Meiryo,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.closed-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.closed-message {
  width: min(100%, 420px);
  text-align: center;
}

.logo {
  display: block;
  width: 150px;
  height: auto;
  margin: 0 auto 45px;
}

h1 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.47;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.46;
}
