body{
  background-color: rgb(3, 31, 43)
}



@keyframes scroll {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .animate-scroll {
      animation: scroll 25s linear infinite;
    }


.scrollbar-thin::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
}

.scrollbar-thin::-webkit-scrollbar-thumb {
  background-color: #9ca3af !important; 
  border-radius: 4px !important;
}

.scrollbar-thin::-webkit-scrollbar-track {
  background-color: #f3f4f6 !important; 
}


.scrollbar-thin {
  scrollbar-width: thin !important;
  scrollbar-color: #9ca3af #f3f4f6 !important;
}


