@charset "UTF-8";

.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: #8d2e36;
  color: #fff;
  border-radius: 30px;
}

.btn-outline {
  background-color: transparent;
  color: #9e2121;
  border: 2px solid #93252d;
}

.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;
    background-color: #c9c9c9;
  color: #a34848;
  transition: background-color 0.3s;
}

.btn-hover:hover{
    background-color: #932d35;
    color: #ffffff;
}

.profile-card {
  width: 350px;
  margin: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

.profile-image {
  width: 100%;
  height: 180px;
  background-color: #eee;
  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: #9b3240;
  border-bottom: 2px solid #ad2f2f;
}

.profile-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}