JSFiddle - React, Tailwind, and code Playground

HTML

<div id='text'>
 <div>Любой текст</div>
 <div><div>Любой текст</div></div>
</div>

CSS

html, body {
				margin: 30px;
				padding: 0px;
				background: url(http://templates.cms-guide.com/42160/images/home_head.png);
				color: white;
			}
			
			#text {
				font-size: 30px;
			}
			#text > div:first-child {
				opacity: 0.8;
				overflow: hidden;
				height: 22px;
			}	
			#text > div:last-child {
				overflow: hidden;
			}	
			#text > div:last-child div {
				position: relative;
				margin-top:-22px;
			}