Градиент Для Текста (№2)
HTML
<div id="container">
<h1>DOBROVOIMASTER</h1>
</div>
CSS
body { background-color: #efe; }
#container {
margin: 0 auto;
max-width: 700px;
margin-top: 100px;
}
h1 {
font-size: 55px;
background: -webkit-linear-gradient(#eee, #353968);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}