Просто красивый градиент для фона

by Andrey Dobrovoi

HTML

<h1>красивый градиент</h1>

CSS

@import url(https://fonts.googleapis.com/css?family=Roboto:300&subset=latin,cyrillic);
html,body {
  height: 100%;
  overflow: hidden;
}
body {
  font-family: 'Roboto', sans-serif;
  background-image: linear-gradient(-123deg, #2d363d 0%, #677274 20%, #7a8485 28%, #9d9c98 61%, #c3b5a8 100%);
}
h1 {
  text-align: center;
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
  top: 40%;
  font-size: 1.5em;
  opacity: .5;
}