put text over shadow code example
Example 1: text shadow css
/* x y blur color */
text-shadow: 1px 1px 1px #000000;
Example 2: text shadow effect
//offset 2px right and down with a 5px defusion of gray
h1 {
text-shadow: 2px 2px 5px gray;
}