JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Выворотка</title>
</head>
<body>
<div>
<span>Острый перец</span>
</div>
</body>
</html>
CSS
body {
margin: 0;
}
div {
background-color: #ed1c24;
width: 100%;
height: 100px;
position: relative;
}
span {
position: absolute;
font-family: Impact;
color: #fff;
font-size: 40px;
top: 60px;
left: 20px;
}