/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 14 2024 | 13:40:19 */
.container2 {
  overflow: hidden;
}
.sliding-background {
  background: url("https://storyseed.ai/wp-content/uploads/2024/06/bg-santa-enchanted.webp") repeat-x;
  height: 600px;
  width: 5076px;
  animation: slide 60s linear infinite;
	background-size: 100%;
}

@keyframes slide{
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-3776px, 0, 0);
  }
}