I am looking to enhance my text with a background image, a text-stroke, and a text-shadow. The issue I am facing is that the text-shadow appears on top of the background image. Does anyone have a solution for placing the shadow behind the image?
If you test the snippet, you will notice that the text-shadow overlaps the image. Remove the text-shadow declaration to observe the difference.
Thank you for your assistance.
.letsgo {
font-family: Catamaran, sans-serif;
font-size: 10em;
background-image: url(https://files.cargocollective.com/c2106023/Unavngivet.png);
background-size: contain;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
-moz-background-clip: text;
-webkit-text-stroke: 1px #fff;
text-decoration: none;
text-shadow: 2px 2px 6px #CE5937, 8px 10px 6px #3D79CE, 8px 3px 2px #D782A5;
}
<!DOCTYPE html>
<html>
<head>
<a class="letsgo">here is my text</a>
</html>