JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://zverushka.zz.mu/test/seminaria-webfont.ttf"></script>
<img src="http://zverushka.zz.mu/test/q.png" alt="">
<div class="a">Самовары электрические</div>

CSS

@font-face {
    font-family: 'seminaria';
    src: url('../fonts/seminaria-webfont.eot');
    src: url('http://zverushka.zz.mu/test/seminaria-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
.a {
    white-space: nowrap;
    font-family: 'seminaria';
	font-size: 60px;
	line-height: 1;
	margin-left: 20px;
	color: #ff0000;
	-webkit-text-shadow: 0 1px 0 hsla(0, 0%, 0%, .34);
    -webkit-text-stroke: .25px rgba(100,0,0,.06); /* здесь можно попробовать похимичить */
	text-shadow: 0 1px 0 hsla(0, 0%, 0%, .34);
	position: relative;
	background: -webkit-linear-gradient(bottom, #630100 10%, #b40000 40%, #ff0000 80%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
:-webkit-any(.a) {
    text-shadow: none;
}