1
<!DOCTYPE html>
2
<title>Example</title>
3
<style>
4
body {
5
    color: orange;
6
    font-size: 1.2em;
7
    }
8
div { 
9
    box-shadow: 0px 0px 80px currentcolor;
10
    border: 10px solid;
11
    width: 50%;
12
    margin: auto;
13
    padding: 20px;
14
    }
15
</style>
16
<p>
17
    This is the text color for the 'body' element.
18
</p>
19
<div>
20
    Change the color value of the 'color' property on the 'body' element to see how it affects the shadow on this div.
21
</div>