.btn-radius,
.btn-outline,
.btn-hover {
  display: inline-block;
  width: 200px;
  padding: 15px 0;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  box-sizing: border-box;
  margin: 10px;
}

.btn-radius {
  background-color: #b71a98;
  color: #ffffff;
  padding: 40px;
  border-radius: 50px;
}
.btn-outline {
  background-color: transparent;
  color: #10c516;
  border: 15px solid #e4c308;
}

.btn-hover {
  background-color: #b899d4;
  color: #160c0d15;
  transition: background-color 0.3s;
}
.btn-hover:hover {
  background-color: #7c8bdb;
  color: #130202;
}
.profile-card {
  width: 350px;
  margin: 20px;
  background-color: #aaeca5;
  border: 1px solid #cae38f;
  box-sizing: border-box;
}
.profile-image {
  width: 100%;
  height: 180px;
  background-color: #c4dee7;
  color: #999;
  font-weight: bold;
  text-align: center;
  padding-top: 80px;
  box-sizing: border-box;
}
.profile-content {
  padding: 20px;
}
.profile-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #007bff;
  border-bottom: 2px solid #007;
}