.animated-background {
    width: 100%;
    height: 100%; /* Adjust height as needed */
    background-image: url('0.jpg');
    background-position: 0 0;
    background-repeat: repeat-y; /* Ensures image repeats horizontally */
    animation: backgroundScroll 100s linear infinite;
  }
  
  @keyframes backgroundScroll {
    from {
      background-position: 0 0; /* Start position: top left */
    }
    to {
      background-position: 0 100%; /* End position: right edge (or a pixel value) */
    }
  }

  img:hover {-webkit-filter: brightness(170%);