/* BASIC css start */
.marquee {
  margin: 0 auto;
  padding-top: 15px;
  color: black;
  font-size: 18px;
  border-bottom:#000 1px solid;
  border-top:#000 1px solid;
  top:0;
  left:0;


}

.marquee {
  position: relative;
  width: 720px;
  max-width: 720px;
  height: 40px;
  overflow-x: hidden;
}

.track {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
}

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

/* BASIC css end */

