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

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: fadeIn 0.8s ease both;
}

.avatar {
  width: 192px;
  height: 192px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}

.links {
  display: flex;
  gap: 2rem;
}

.links a {
  color: #e0e0e0;
  font-size: 1.8rem;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.links a:hover {
  color: #ffffff;
  transform: scale(1.15);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
