/*p {
  background-color:blue;
}*/

.name {

  width:100%;
   background-color:blue;
}

.name {
    font-size:50px;
    text-align:center;
    margin:20px 0px 20px 10px;
    color:#fff;
    position: relative;
    font-family: arno-pro,serif;
    font-weight: 400;
    font-style: normal;
    background-image: linear-gradient(
		70deg,
		rgb(255,209, 209, 0.3)  45%, 
		#fff 50%,
		rgb(255,209,209, 0.3) 55% 
	  );
	  background-size: 500% 100%;
    background-clip: text;
  	-webkit-background-clip: text;
	  color: transparent;
    animation: shine 2s infinite;
}

@keyframes shine {
	0% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}