:root {
  font-family: 'nickel';
}


body { 
  margin: 10px;
}

.marquee {
  height: 350px;
  width: 100%;
  position: relative;
  overflow: hidden;
  top: 200px;


}

.marquee div {
  position: absolute;  
  font-size: 350px;
  color: #e000ff;
  transform: translateX(100%);
  animation: marquee 3s linear infinite;
}


@keyframes marquee {
  from {  font-variation-settings: "slnt" -15; transform: translateX(-100%);}
  to {  font-variation-settings:  "slnt" 15; transform: translateX(100%);}
}