@import url(https://fonts.googleapis.com/css?family=Varela+Round);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}
.body2{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: white;
}
.body2 .card{
  position: relative;
  width: 350px;
  height: 400px;
  border-radius: 10px;
  box-shadow: 2px 3px 5px rgba(73, 69, 52, 0.4);
  margin: 40px;
}
.body2 .card .content{
  position: relative;
  z-index: 100;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  text-align: center;
  padding: 20px;
  background: white;
}
.body2 .card .content .img{
height: 50%;
margin-bottom: 20px;
}
.body2 .card .content .img img{
  
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
  }

  .card .content span{
    position: absolute;
    width: 450px;
    height: 180px;
    /*background-image: linear-gradient(-225deg, #F9ECDC 35%, #FAFFA6 65%); */
    background-image: linear-gradient(135deg, #CC6645 10%, #fd5e086b 100%);
    transform: rotate(-0deg);
    top: 10px;
    left: -100px;
  }

  .card .content h4{
    margin-top: 25px;
    font-size: 24px;
    color: black;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
  }
  .card .content h6{
    font-size: 18px;
    color: #CC6645;
    font-family: 'Playfair Display', serif;
    

  }
  .card .content p{
    font-size: 13px;
    color: black;
    font-family: Varela Round;

  }
  .card .links{
    position: absolute;
    z-index:90 ;
    width: 50px ;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: #e68362;
    box-shadow: 2px 3px 5px rgba(73, 69, 52, 0.4);
    padding: 20px;
    align-items: center;
    right: 10px;
    top: 15px;
    transition: 0.5s;
  }
  .card:hover .links{
    right: -50px;
    border-radius: 0 10px 10px 0;
  }
  .card .links a{
    font-size:25px ;
    color: black;
  }

  .card .links a:nth-child(1):hover{
    color: #0152ca;
  }
  .card .links a:nth-child(2):hover{
    color: #1C93E4;
  }


