.marquee-container {
    overflow: hidden;
    width: 100%;
  }
  
  .marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 100s linear infinite;
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  #prices {
    font-size: 24px;
    /* font-weight: bold; */
    color: #FFF;
    background-color: #100f15;
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.6);
  }
  
  #mqprices::-webkit-marquee {
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  }
  
hr{
  border: none;
  border-top: 3px solid #fbbd0a;
  height: 1px;
  margin: 10px 0;
}