/* body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(180deg, #43cea2 0%, #185a9d 100%);
  min-height: 100vh;
} */

.container {
  max-width: 400px;
  margin: 0 auto;
  padding-top: 40px;
  text-align: center;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 20px;
  object-fit: cover;
  border: 4px solid #fff;
}

h1 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #fff;
}

.description {
  color: #e0e0e0;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.links a {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 32px;
  padding: 16px 0;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.links a:hover {
  background: #fff;
  color: #185a9d;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

.social-icons a svg {
  transition: transform 0.2s, fill 0.2s;
}

.social-icons a:hover svg {
  transform: scale(1.15);
  fill: #43cea2;
}


.links {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.rounded-btn {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 32px;
  padding: 16px 0;
  font-size: 1.1rem;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.rounded-btn:hover {
  background: #fff;
  color: #185a9d;
}


body {
  background: radial-gradient(circle, #43cea2 0%, #185a9d 100%);
  background-size: 200% 200%;
  animation: gradientRadial 6s linear infinite;
}
@keyframes gradientRadial {
  0% { background-position: 50% 50%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 50% 50%; }
}