<!DOCTYPE html>
<title>Example</title>
<style>
body {
color: orange;
font-size: 1.2em;
}
div {
box-shadow: 0px 0px 80px currentcolor;
border: 10px solid;
width: 50%;
margin: auto;
padding: 20px;
</style>
<p>
This is the text color for the 'body' element.
</p>
<div>
Change the color value of the 'color' property on the 'body' element to see how it affects the shadow on this div.
</div>