@import url("https://fonts.googleapis.com/css?family=Raleway:400,400i,700");
.content_anim {
	grid-area:anim;
	box-sizing:border-box;
  font-family: Raleway, sans-serif;
  background-color: #0099FF;
  color: #fff;
  font-size: 24px;
  width: 100%;	
	margin-bottom:20px;
	height:80px;
	margin-top:10px;
}

.content_anim p {
  font-weight: 700;
  text-align: center;
  font-size: 40px;
  font-family: Hack, sans-serif;
  text-transform: uppercase;
  background: linear-gradient(90deg, #0099FF, #fff, #0099FF);
  letter-spacing: 5px;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: no-repeat;
  background-size: 80%;
  animation: shine 8s linear infinite;
  position: relative;
  }

@keyframes shine {
  0% {
    background-position-x: -500%;
  }
  100% {
    background-position-x: 500%;
  }
}
