/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #000000;
  --color-text: #ffffff;
  --color-accent: #ffffff;
}

html, body {
  height: 100%;
}

html {
  background: var(--color-bg);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

body {
  display: grid;
  place-items: center;
  min-height: 100dvh;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Center panel
   ============================================================ */
.site-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

/* ============================================================
   Logo
   ============================================================ */
.site-logo {
  width: 200px;
  height: auto;
  display: block;
}

/* ============================================================
   Social nav
   ============================================================ */
.social-nav {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.social-link:hover {
  opacity: 0.5;
}

.social-link i {
  font-size: 1.5rem;
}
