body {
  background-color: #000000;
  color: #c9d1d9;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica,
    Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  font-size: 14px;
}

.container {
  text-align: center;
  padding: 2rem;
}

.profile-pic {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  border: 2px solid #30363d;
}

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

.tagline {
  font-size: 1rem;
  font-weight: 400;
  color: #8b949e;
  margin: 0 0 1.5rem 0;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.link-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #21262d;
  border: 1px solid #30363d;
  padding: 0.5rem 0.75rem;
  border-radius: 24px;
  text-decoration: none;
  color: #c9d1d9;
  transition: background-color 0.2s, border-color 0.2s;
}

.link-item a.x:hover {
  background-color: #21262d;
  border-color: #8b949e;
}

.link-item a.github:hover {
  background-color: #333333;
  border-color: #8b949e;
}

.link-item a.substack:hover {
  background-color: #ff6719;
  border-color: #ff6719;
  color: #ffffff;
}

.link-item a.linkedin:hover {
  background-color: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
}

.link-item a.glass:hover {
  background-color: #ffd60a;
  border-color: #ffd60a;
  color: #000000;
}

.link-item a:focus-visible {
  outline: 2px solid #1f6feb;
  outline-offset: 2px;
}

.link-item i {
  font-size: 1rem;
}

.break {
  flex-basis: 100%;
  height: 0;
}

@media (max-width: 600px) {
  .links {
    flex-direction: column;
    align-items: center;
  }

  .break {
    display: none;
  }
}
