@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Bengali:wght@100..900&display=swap');


.noto-serif-bengali-700 {
    font-family: "Noto Serif Bengali", serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;


}

.marquee {
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;

}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}