Hover Shadow Effect
Preview
Code
<style>
.card{
width:180px;
padding:20px;
background:white;
box-shadow:0 2px 6px rgba(0,0,0,0.2);
transition:0.3s;
}
.card:hover{
box-shadow:0 10px 25px rgba(0,0,0,0.3);
}
</style>
<div class="card">Hover me</div>