body{
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    background-color: #00CCCC;

    display: flex;
    justify-content: center;
    align-items: center;

    height: 100vh;

   
}

.card{

    background: rgb(245, 22, 156);

    width: 300px;

    padding: 20px;

    border-radius: 12px;

    text-align: center;

    box-shadow: 0px 4px 10px rgba(0,0,0,.2);
font-family: fantasy;
}
.card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}
.card img{

    transition:.4s;

}

.card img:hover{

    transform:scale(1.1) rotate(3deg);

}