text-shadow: 2px 2px 5px red;
/*
The first 2px is the horizontal shadow and the second 2px
is the vertical shadow meanwhile the 5px is the blur effect
intensity.
Basically, It will move the text shadow 2px to the right and
2px to the bottom (x, y) and the 5px makes the blur effect more intense
or you can turn the intensity down by changing 5px to something smaller
like 2px perhaps.
Lastly, red is the color, you can also change it to hex color, rgb color,
rgba color and stuff like that. Simply put, it's the color of the
text shadow.
*/