css

.lauftext-container {
  background: #ffffff;    /*weißer Hintergrund*/
  overflow:hidden;  
  padding: 8px 0;
}

.lauftext {
  color: #ff0000;    /*rote Schrift*/
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: laufschrift 15s linear infinite;      /*Textgeschwindigkeit*/
  font-size: 2.0rem;                          /*Textgröße*/
  font-weight: bold;                   /*fett*/
}
@keyframes laufschrift {
  from {
    transform: translateX(0);
  }
  to {
   transform: translateX(-100%); 
  }
}
@ media (max-width: 768px) {                  /*das ist für Handy*/
  .lauftext {
    font-size: 1.2rem;                    /*Textgröße für Handy*/
    animation-duration: 22s;              /*Textgeschwindigkeit für Handy*/  
  }
}