* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #219ebc, #ffb703);
}

.card{
   width: 300px;
   height: 400px;
   display: flex;
   align-items: center;
   flex-direction: column;
   background-color: white;
   border-radius: 15px;
   box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
   transform-style: preserve-3d; will-change: transform; transition: transform .15s ease, box-shadow .2s ease;
}

.card .card-img{
   width: 100%;
   height: 250px;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 15px;
   position: relative;
}

.card .card-img::after{
   content: '';
   width: 30px;
   height: 4px;
   position: absolute;
   background-color: #48cae4;
   bottom: 0px;
   left:  50%;
   transform: translateX(-50%);
   border-radius: 35px;
}

.card .card-img img{
   width: 180px;
   border-radius: 50%;
   border: 4px solid #48cae4;
}

.card .details{
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
   flex-direction: column;
}

.card .details h1{
   font-weight: 500;
}

.card .details p{
   font-weight: 500;
   font-size: 0.9rem;
}

.card .controls{
   display: flex;
   justify-content: center;
   align-items: center;
   width: 100%;
   gap: 10px;
   margin: 15px;
}

.card .controls i{
   font-size: 1.3rem;
   transition: 0.2s ease;
   cursor: pointer;
}

.card .controls i:hover{
   transform: scale(1.2);
}

.card .controls i#love{
   color: #e63946;
}

.card .controls i#bookmark{
   color: #fca311;
}

.card .controls i#add{
   color: #ffafcc;
}

.card .controls i#share{
   color: #0077b6;
}

.card.hover{
   transform: perspective(800px) scale(1.03)
}