body, html {
  height: 100%;
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #f8f9fa, #e3e6ea);
}

.container {
  padding: 50px 15px;
  text-align: center;
}

.profile-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

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

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #0056b3;
  color: white;
  transform: scale(1.1);
}

.subtitle .highlight {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.subtitle .highlight .extra {
  display: inline-block;
  overflow: hidden;
  width: 0;
  white-space: nowrap;
  vertical-align: bottom;
  transition: width 0.5s steps(6, end);
}
.subtitle .highlight:hover .extra, .subtitle .highlight.active .extra {
  width: 6ch;
}

/*# sourceMappingURL=main.css.map */
