@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  font-family: Poppins, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: black
}
.image {
  position: relative;
  height: 150px;
  width: 150px;
  background-color: rgb(221, 13, 225);
  box-shadow: 2px 2px 10px rgb(127, 12, 69);
  border-radius: 50%;
  padding: 3px;
  z-index: 3;
  margin: 15kpx 0;
}

.image .profile-img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  padding: 3px;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 360px;
  width: 100%;
  /* height: 78%; */
  background: #fff;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: ;
  transition: 1s ease-in-out;
  box-shadow: 0px 2px 7px 0px #d810de;
}

.profile-card::before {
  content: "";
  position: absolute;
  height: 25%;
  width: 100%;
  background-color: #e014ce;
  top: 0;
  left: 0;
  border-radius: 24px 24px 0 0;
}

.profile-card::after {
  /* display: none; */
  content: "";
  position: absolute;
  left: 0;
  bottom: calc(-100% + 5px);
  width: 100%;
  height: 75%;
  background: #0d0d0d;
  z-index: -1;
  transition: 1s;
  border-bottom-right-radius: 26px;
  border-bottom-left-radius: 26px;
}

.profile-card:hover::after {
  /* display: block; */

  bottom: 0px;
  z-index: 1;
}

.profile-card .text {
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
  transition: 0.8s ease-in-out;
}

.text .name {
  font-size: 20px;
  font-weight: bold;
  padding: 10px;
  z-index: 10;
}

.text .job {
  font-weight: 500;
  margin: 2px 0;
  z-index: 10;
}

.image .profile-img {
  z-index: 10;

  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  padding: 3px;
}

.profile-card .media-btns {
  z-index: 10;

  display: flex;
  align-items: center;
  margin: 1.4em;
}

.profile-card .link {
  z-index: 10;

  height: 34px;
  color: white;
  width: 34px;
  margin: 0 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background-color: #4070f4;
  text-decoration: none;
}

.btns {
  z-index: 10;

  display: flex;
  align-items: center;
  margin-top: 10px;
}

.button {
  z-index: 10;

  padding: 8px 24px;
  margin: 0 10px;
  margin-bottom: 15px;
  border-radius: 24px;
  border: none;
  font-size: 14px;
  font-weight: 400;
  background-color: #4070f4;

  cursor: pointer;
  transition: all 0.3s ease;
}
.button a{
  text-decoration: none;
  color:black
}
.btns .button :hover {
  background-color:transparent;
}

.analytics {
  z-index: 10;

  display: flex;
  align-items: center;
  margin-top: 25;
}

.analytics .data {
  display: flex;
  align-items: center;
  padding: 10px 1.5em;
  margin: 0.5em;
  /* gap:100px */
  border-right: 2px solid #e7e7e7;
}
.data i {
  font-size: 18px;
  margin-right: 6px;
}
.data:last-child {
  border-right: none;
}

.job:hover,
.button:hover,
.profile-card .name:hover,
.profile-card:hover,
.button a:hover {
  transition: 0.4s ease-in-out;
  color: white !important;
  transform: scale(1.02);
}
.link:hover {
  transform: scale(1.2);
}
.profile-card {
}

img:hover {
  transition: 0.5s ease-out;
  transform: scale(1.04);
}

.name {
  font-weight: bolder;
  text-shadow: 2px 2px 10px violet;
}
