Hi, I need help figuring out how to recreate this image using only CSS for the font and style.
I attempted it with this code on JSFIDDLE: JSFIDDLE CSS
*{
font-family: 'Asap', sans-serif;
font-size:130px;
color:#444;
font-weight:bold;
letter-spacing:-3px;
}
body{
background:url('http://img.ly/system/uploads/007/221/887/large_antani.png') no-repeat left 190px ;
}
img{
width:auto;
height:auto;
}
a{
text-shadow:
3px 3px 0 #fff,
-1px -1px 0 #fff,
1px -1px 0 #fff,
-1px 1px 0 #fff,
1px 1px 0 #fff,
0px 2px 2px #ccc, 0px 4px 4px #ccc,0px 6px 6px #ccc;
}
HTML
<a>asd</a>
Any suggestions are greatly appreciated.
If you believe replicating this image using pure CSS is not possible, please let me know so I can make other arrangements. I am aware that CSS cannot create text gradient colors, so I am considering using a library like this: https://github.com/mrnix/pxgradient
The biggest challenge for me is getting the text shadow to look like in the image. Thank you!