body {
  font-family: Arial, sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  padding: 20px;
}

h1 {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
}

.table {
  text-align: center;
}

.card {
  display: inline-block;
  width: 250px;
  margin: 0 15px 30px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  text-align: left;
}

.card:hover {
  transform: translateY(-10px);
}

.photo {
  position: relative;
  width: 100%;
  height: 250px;
  background-color: #eee;
}

.photo img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}

.info {
  padding: 20px;
  text-align: center;
}

.name {
  font-size: 24px;
  margin: 10px 0 5px;
  color: #0077b6;
}

.prof {
  font-size: 18px;
  margin-bottom: 10px;
  color: #555;
}

.divider {
  height: 2px;
  background-color: #0077b6;
  width: 60px;
  margin: 0 auto 15px;
}

.bio {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0077b6;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.button:hover {
  background-color: #023e8a;
}
