.scrolling-text-box {
    position: fixed;
    top: 0;
    left: 0;
    width: fit-content;
    background-color: #000;
    color: #fff;
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
}

.scroll-box-content {
    display: inline-block;
    animation: scrolling-text 15s linear infinite;
}

@keyframes scrolling-text {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}