* {
    box-sizing: border-box;
}

.marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 0;
}

.marquee span {
    display: inline-block;
    white-space: nowrap;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #f7931e;
    will-change: transform;
    align-self: center;
}

.marquee::before,
.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    z-index: 2;
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(var(--marquee-bg-color-rgba), 1), rgba(var(--marquee-bg-color-rgba), 0));
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(var(--marquee-bg-color-rgba), 1), rgba(var(--marquee-bg-color-rgba), 0));
}