body {
  margin-top: 100px;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #ff73c7, #e80585);
  color: #f1f1f1;
}

.container {
  max-width: 900px;
  margin: 60px auto;
  padding: 40px 20px;
  text-align: center;
  background-color: rgba(126, 41, 41, 0.03);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  animation: fadeIn 1s ease-in-out;
}

.title {
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: bold;
  color: #fd2d76;
  letter-spacing: 2px;
}

.profile-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ffffff30;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.profile-img:hover {
  transform: scale(1.05);
}

.name {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffffff;
}

.education {
  font-size: 1.2rem;
  color: #c0b5b5;
  margin-bottom: 20px;
}

.description {
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.8;
  text-align: justify;
  padding: 0 20px;
}

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

@media (max-width: 600px) {
  .title {
    font-size: 2.2rem;
  }

  .name {
    font-size: 1.5rem;
  }

  .education {
    font-size: 1rem;
  }

  .profile-img {
    width: 170px;
    height: 160px;
  }
}
