:root{
  --text: #111;
  --muted: #222;
}

*{ box-sizing: border-box; }

html, body{
  height: 100%;
}

body{
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Space Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.wrap{
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 48px 16px;
  text-align: center;
}

.hero{
  width: 150px;
  height: auto;
  margin-bottom: 14px;
}

.logo-line{
  font-size: 22px;
  margin: 0;
  letter-spacing: 0.5px;
  font-weight: 700;
}

.subtitle{
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.divider{
  margin: 14px 0 6px;
  font-size: 12px;
  max-width: 720px;
  line-height: 1.5;
}

.copy{
  max-width: 760px;
  font-size: 12px;
  line-height: 1.7;
}

.copy p{
  margin: 10px 0;
}

.social{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.social__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  text-decoration: none;
}

.social__link img{
  width: 26px;
  height: 26px;
  display: block;
}

@media (max-width: 480px){
  .hero{ width: 130px; }
  .logo-line{ font-size: 20px; }
  .copy{ font-size: 12px; }
}