0 / 60 seg.

Complete the code to set a box shadow with a horizontal offset of 6px, a vertical offset of 6px, no blur, and a gray color, and a text shadow with a horizontal offset of 4px, a vertical offset of 4px, a blur radius of 2px, and a black color:

.element {
 box-shadow: _____;
 text-shadow: _____;
}