/** Reset for users who would prefer no animations **/
/**@media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
**/

  /** Ticker **/
  .ticker {
    --ticker-duration: 35s;
  
    position: fixed;
    bottom:0;
  /** bottom: 0;**/
    left: 0;
    width: 100%;
    background: rgb(9, 123, 223, 0.5);
    display: block;
    color: hsl(240, 50%, 98%);
    overflow: hidden;
    padding: 0.5rem;
    Z-index:10;
    
  }
  
  .ticker__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: ticker;
    animation-duration: var(--ticker-duration);
    text-align: center;
    width: max-content;
    padding-left: 100%;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .ticker__inner {
      flex-wrap: wrap;
      white-space: inherit;
      padding-left: 0;
      width: auto;
    }
  }
  
  .ticker__inner p {
    margin: 0 2rem;
  }
  
  @keyframes ticker {
    0% {
      transform: translate3d(0%, 0, 0);
    }
  
    100% {
      transform: translate3d(-100%, 0, 0);
    }
  }

.myp { <display inside>
      font-family: Arial, Helvetica, sans-serif;     
      font-size : 50px;
     
  } 
.myp:before {
  content= "goedenacht"
}  