.marquee-wrapper {
    width: 100vw; /* Set to 100% of the viewport width */
    height: 100%;
    transform: translateY(50%) rotateZ(3deg);
    overflow: hidden;
    background: linear-gradient(93deg, #FF5C65 0%, #FD008B 53.12%, #6500FC 100%);
    padding: 5px 0;
    position: relative;
    z-index: 10;
    margin-left: -10px;
}

.marquee-wrapper--back {
    width: 100vw; /* Set to 100% of the viewport width */
    height: 100%;
    transform: translateY(50%) rotateZ(-3deg);
    background: #913BFF;
    margin-top: -65px;
    z-index: 9;
}

.marquee-wrapper--back p {
    color: white;
    padding: 5px 0;
}

.marquee-wrapper hr {
    border: 1px solid;
}

.marquee {
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 36px; /* 112.5% */
    letter-spacing: 1.92px;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    width: 100%;
    animation: marquee 20s linear infinite;
    color: #1E0536;
}

.marquee p {
    text-wrap: nowrap;
    margin: 0;
    padding: 10px 0;
}

.marquee-wrapper .marquee p:after {
    content: url('images/star_dark.png');
    transform: rotate(-5deg);
    margin: 0 10px;
}

.marquee-wrapper--back .marquee p:after {
    content: url('images/star_white.png');
    transform: rotate(-5deg);
    margin: 0 10px;
}

@keyframes marquee {
    from {transform: translateX(0%); }
    to {transform: translateX(-100%); }
}