Can you explain to me more, this is the code I can't understand box shadow properties. I have tried to figure out what is all about, but I can. Thank you very much!
h1 {
text-shadow: 5px 5px 2px #999;
}
h2 {
color: #fff;
text-shadow: 1px 0 0 #000, 0 1px 0 #000, -1px 0 0 #000, 0 -1px 0 #000;
}
div {
width: 50%;
margin: auto;
background-color: #ff0;
box-shadow: 5px 0 10px #aaa, 0 5px 10px #aaa, -5px 0 10px #aaa, 0 -5px 10px #aaa;
}
<!DOCTYPE html>
<html>
<head>
<title>03 - Senke</title>
</head>
<a>
<img src="">
</a>
<body>
<h1>03 Senke</h1>
<h2>Podnaslov</h2>
<div>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</div>
</body>
</html>