html, body{
    font-size: 16px;
    background-color: #f7f7f7;
}
.container-marquee{
    background-color: #ffa200;
    padding: 1em 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}
.marquee {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: marquee 15s linear infinite;
    font-size: 18px;
  }
.marquee span{
    color: red;
    font-weight: 800;
    margin-left: 25px;
    margin-right: 25px;
}

  @keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-100%); }
  }
  .werbung{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-30px, -20px);
    padding: 5px;
    background-color: #ffa200;
    z-index: 10;
}