.theDude{
position: relative;
}
.theDude:before{
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
z-index: -1;
transform: translate(20px, 20px);
background-color: gray;
}
.theDude:after{
content: '';
display: block;
width: 100%;
height: 100%;
position: absolute;
z-index: -2;
transform: translate(40px, 40px);
background-color: lightgray;
}