body {
  background-color: #000000;
  font-family: 'Nunito', sans-serif;
}


p {
  
  color: #FFFFFF;



}



h1 {
  color: #FFFFFF;
  text-transform: uppercase;
  font-size: 20px;
}

scroll-left {
 height: 50px;	
 overflow: hidden;
 position: relative;
 background: black;
 color: white;
 border: 1px red;
}
.scroll-left p {
 position: relative;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: center;
 /* Starting position */
 transform:translateX(100%);
 /* Apply animation to this element */
 animation: scroll-left 40s linear infinite;
}
/* Move it (define the animation) */
@keyframes scroll-left {
 0%   {
 transform: translateX(100%); 		
 }
 100% {
 transform: translateX(-100%); 
 }
}