:root{
  --bg: #1c1e24;
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --icon: rgba(255,255,255,.78);
  --iconHover: rgba(255,255,255,.98);
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

body{
  margin:0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

.center{
  min-height: 100%;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 28px 16px;
  gap: 14px;
}

.logo{
  width: 300px;
  height: 300px;
  object-fit: contain;
  display:block;
}

.text{
  display:grid;
  gap: 6px;
  align-items:center;
  justify-items:center;
}

h1{
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.02em;
}

p{
  margin: 0;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.5;
  font-size: 14px;
}

/* social icons pinned to bottom */
.social{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:center;
}

.icon{
  width: 42px;
  height: 42px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  color: var(--icon);
  text-decoration:none;
  transition: transform .15s ease, color .15s ease, background .15s ease;
}

.icon:hover{
  transform: translateY(-2px);
  color: var(--iconHover);
  background: rgba(255,255,255,.06);
}

.icon svg{
  width: 22px;
  height: 22px;
}
