:root {
  color-scheme: dark;
  background: #0e0e0e;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  background: #0e0e0e;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  color: #ffffff;
  overflow: hidden;
}

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

.identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  will-change: transform;
}

.logo {
  display: block;
  width: min(300px, 70vw);
  height: auto;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.social-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50%;
  transition: transform 120ms ease;
}

.social-link:hover {
  transform: translateY(-1px);
}

.social-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 4px;
}

.social-icon {
  width: 24px;
  height: 24px;
  display: block;
}

@media (max-width: 600px) {
  .page {
    padding: 24px 20px;
  }

  .identity {
    gap: 24px;
  }

  .logo {
    width: min(250px, 72vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .identity {
    transform: none !important;
  }

  .social-link {
    transition: none;
  }
}
