body {
  margin: 0;
  font-family: sans-serif;
  background: #f9f9f9;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
/* uncomment below for pink fade animation*/

/*
body {
  background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fbc2eb, #a6c1ee);
  background-size: 400% 400%;
  animation: gradientBG 30s ease infinite;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
*/

.container {
  text-align: center;
  max-width: 500px;
  padding: 2rem;
}

/* put this back below if you want a circle
border-radius: 50%;*/

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

h1 {
  margin: 0.5rem 0;
  font-size: 1.6rem;
}

.bio {
  color: #666;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.links a {
  display: block;
  margin: 0.5rem 0;
  padding: 1rem;
  background: #eee;
  border: #000;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.links a:hover {
  background: #D4FB79;
}
