Material Hover Effect
.material {
padding: 20px;
text-align: center;
border-radius: 7px;
box-shadow: 0 1px 2px rgba(0,0,0,0);
transition: box-shadow 0.3s ease-in-out:;
}
.material:hover {
border-radius: 7px;
box-shadow: 0 0px 30px rgba(13,115,142,0.2);
text-align: center;
}