/*https://reneroth.org/marquees-in-css*/

.container {
    overflow: hidden;
    color: #bebebe;
    padding: 15px;
    text-align: center;
    line-height: 1.5;
    font-size: 1.5em;
    font-style: normal;
    font-variant: normal;
    font-family: Noto Sans, Tahoma, Verdana, sans-serif;
  }
  
  .scrolling {
    animation: marquee 232s linear infinite;
  }
  
  @keyframes marquee {
    from {
      transform: translateY(10%);
    }
    to { 
      transform: translateY(-100%);
    }
  }
