* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: #0f0f0f;
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

main {
  padding: 2rem;
}

h1 {
  font-size: 2.5rem;
  letter-spacing: 1px;
  font-weight: 700;
}

.aka {
  display: block;
  font-size: 1rem;
  color: #999;
  margin-top: 0.5rem;
}

.tagline {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 300;
  color: #aaa;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 2px solid #333;
}

.subtle {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #555;
}

.links {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.icon {
  width: 32px;
  height: 32px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.link-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.link-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.project-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: #fff;
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.project-button:hover {
  background-color: #333;
  transform: translateY(-2px);
}