<!DOCTYPE html>
<html>
<head>
<title>Der Titel des Dokuments</title>
<style>
div {
display: flex;
justify-content: center;
align-items: center;
height: 200px;
width: 500px;
margin: 0 auto;
padding: 10px;
background: #fff;
font-size: 100px;
font-family: Arial, Helvetica, sans-serif;
}
p {
color: #333333;
text-shadow: 4px 3px 0px #fff, 9px 8px 0px #ccc;
}
</style>
</head>
<body>
<div>
<p><strong>W3DOCS</strong></p>
</div>
</body>
</html>