I’m trying to make a unicode cardgame using css and z-index.
<html>
<head>
<style>
div.c {position:absolute;font-size:10vw; width:10vw; height:12vw; color:red;}
div.c1 {left:1vw; top:1vw; z-index:1;}
div.c2 {left:3vw; top:3vw; z-index:2;}
div.c3 {left:5vw; top:5vw; z-index:3;}
</style>
</head>
<div class='c c1'>🂱</div>
<div class='c c2'>🂱</div>
<div class='c c3'>🂱</div>
</html>
Here are two version - the second adding background:white;

Neither looks right. What do I need to do?
