
body {
    position: relative;
  margin: 0;
  background: white;
} 
body::before {
  content: "";
  position: fixed;
  background-image: url("lace.jpg"); /* like sparkles, lace, gradient, etc */
  background-repeat: repeat;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

#container {
  position: relative;
  z-index: 1;
}
.mainbox {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
  
  background-image: url("Adobe%20Express%20-%20file-13.png");
  background-size: cover;
  background-position: center;
}
.container{
  overflow: hidden;
  white-space: nowrap;
}

.scrolling {
  animation: marquee 2s linear infinite;
  display: inline-block;
  padding-right: 10px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to { 
    transform: translateX(-100%);
  }
}
