JSFiddle - React, Tailwind, and code Playground

by twobomb three

HTML

<div>
<span>Мой текст</span></div>
<span>Мой текст</span>

CSS

span{
  position:absolute;
  left:-2px;
  top:0px;
  color:black;
  font-size:100px;
  font-family:Impact;
}
div>span{
  position:relative;
  left:-60px;
  top:-50px;
  color:black;
  font-size:100px;
  font-family:Impact;
}
div>span{
  color:white;
  z-index:10;
}
div{
  overflow:hidden;
  margin:50px;
  left:50px;
  top:50px;
  width:500px;
  height:350px;
  background:url(https://www.sunhome.ru/i/wallpapers/200/planeta-zemlya-kartinka.960x540.jpg);
  background-size:cover;
  
}