
.card {
  width: 100%;
  height: 450px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  overflow: hidden;
  border:none;
}
.card .card_top {
  height: 200px;
  position: relative;
}
.card .card_top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card .card_top .profile_photo {
  width: 130px;
  height: 130px;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translatex(-50%);
}
.card .card_top .profile_photo img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
  object-fit: cover;
  border: 8px solid rgba(255, 255, 255, 0.55);
}
.card .card_content {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  padding: 4em 2.5em 3em;
}
.card .card_content h2 {
  font-weight: 700;
  font-size: 24px;
  color: #181e23;
}
.card .card_content h3 {
  font-weight: 400;
  margin: 5px 0;
  font-size: 16px;
}
.card .card_content p {
  text-align: center;
  color:#99A3AC;
}
.card .card_content p span {
  margin-right: 10px;
}
.card .card_content p a {
  text-decoration: none;
  color:#99A3AC;
}
.card .card_content p a:hover {
  text-decoration: underline;
  color:#007bff;
}
.card .card_content p + p {
  margin-top: 10px;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}