@import url('https://rsms.me/inter/inter.css'); /* Import Inter font */

body{
 overflow-x: hidden;   
}

/* Apply font feature settings to Inter font */
.font-inter {
font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

/* CSS for marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
}
}

.marquee {
    animation: marquee 18s linear infinite;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

  
  