css code for shadow effect code example
Example 1: css box shadow
/* offset-x | offset-y | blur-radius | spread-radius | color */
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
Example 2: text shadow effect
//offset 2px right and down with a 5px defusion of gray
h1 {
text-shadow: 2px 2px 5px gray;
}