* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: #080808;
  color: #f4f4f4;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.panel {
  width: min(100%, 520px);
  text-align: center;
  transform: translateY(-3vh);
}

h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 64px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0;
  color: #f7f7f7;
}

.sub {
  margin: 28px 0 0;
  color: #6f6f73;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0;
}

.status {
  width: fit-content;
  margin: 44px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #232326;
  border-radius: 999px;
  background: #151516;
  color: #a7a7aa;
  font-size: 15px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 18px 42px rgba(0,0,0,.28);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 16px rgba(34,197,94,.55);
}

.foot {
  margin: 64px 0 0;
  color: #262629;
  font-size: 14px;
  letter-spacing: 0;
}

@media (max-width: 520px) {
  .panel {
    transform: translateY(-1vh);
  }

  h1 {
    font-size: 44px;
  }

  .sub {
    font-size: 16px;
  }

  .status {
    font-size: 14px;
  }
}
