*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #0a0a0a;
  --color-text: #c0c0c0;
  --color-link: #c0c0c0;
  --color-link-hover: #808080;
}

body {
  font-family: "SF Mono", "Fira Code", "Fira Mono", Menlo, Consolas, monospace;
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.avatar {
  width: 128px;
  height: 128px;
  object-fit: cover;
  margin-bottom: 1rem;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 320px;
}

.links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--color-link);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.15s;
}

.links a:hover {
  color: var(--color-link-hover);
}

.links svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
}
