W3C

Bert Bos & Eva Kasal | CSS3 in Style

Box Shadow

From the demo:

div:nth-child(2) div{
	box-shadow:rgba(102,90,74, .7) 3px 3px inset;
}

@font-face - text-shadow

From the demo:

h1:nth-child(2){
	font:4em/1 MatizRegular, Arial, Helvetica, sans-serif;
	font-weight:bold;
	text-shadow:5px 5px 3px #85b4d8, 10px 10px 6px #ffd296;
}