.banner {
    display: flex;
    flex-direction: column;
    /* height: 15em; */
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.5);
    background-repeat: repeat-x;
    position: relative;
    object-fit: cover;
    overflow: hidden;
    white-space: nowrap;
    background-color: var(--green-for);
  }
  
  .banner h5 {
  font-size: 5rem;
  color: white;
  font-family: ZeitungPro-Black-_1_;
  margin: auto;
  padding-top: 3rem;
  }
  /* .banner img {
   
    height: 100%;
    position: absolute;
    /* animation-name: bannerslide;
    animation-duration: infinite;
    animation-direction: reverse; 
    animation: bannerslide 10s linear infinite;
  }
   */

  .bannertext {
    display: flex;
    position:relative;
    flex-direction: row;
    min-width: 10%;
    background-color: var(--ath-bg-cl);
    color: white;
    font-size: 8em;
    justify-content: center;
    height: 100%;
    gap: 10rem;
    padding-top: 4rem;
    margin-bottom: 5rem;
    
    /* animation-name: bannerslide;
    animation-duration: infinite;
    animation-direction: reverse; */
    animation: bannerslide 20s linear infinite;
  }
  @keyframes bannerslide {
    from {
     left:80%;
    }
    to {
     left: -60%;
    }
   }
 
  
  /* .bannertext:nth-of-type(2) {

  }
   */