*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    height: 100%;
    width: 100%;
    background-color: black;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card{
    height: 400px;
    width: 300px;
    background-color: #fff;
    overflow: hidden;
    font-family:Helvetica, sans-serif;
    border-radius: 10px;
    
}
.card img{
    height: 300px;
    width: 100%;
    object-fit: cover;
    padding: 20px;
    border-radius: 30px;
}
.card h1{
    text-align: center;
    font-weight: 500;
    
}
.card i{
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    background: linear-gradient(to right bottom,rgb(88, 2, 88),rgb(213, 6, 179));
    background-clip: text;
   -webkit-background-clip: text;
    color: transparent;
   
    font-size: 100px;
    transform: translate(-50% , -50%) scale(0) rotate(-60deg) ;
    transition: all cubic-bezier(.69,1,.73,1.58) 0.4s;
}