
h1.nice-title {
    background-color: #e26961;
  font-family: "Anton", sans-serif;
  text-align: center;
  margin: 0;
  -webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-mask-image: -webkit-gradient(linear,left top,left bottom,color-stop(0,#000),color-stop(.5,#000),color-stop(1,transparent));
	transition: background-position 1s, background-color 1s;
	text-align: center;
	font-size: 230px;
  font-weight: 400;
	line-height: 1;
  background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/74321/tw-o.png'), url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/74321/tw6-o.png'), url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/74321/tw5-o.png');
  background-size: 45vw auto, 45vw auto, 30vw auto;
  background-repeat: repeat-x;
  background-position: 0px 15%, 200px 25%, -50px 2vw;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    background-position: 0px 15%, 200px 25%, -50px 2vw;
  }
  50% {
    background-position: 0px 10%, 200px 26%, -50px 2.1vw;
  }
}
