/* Container styles */
.scrolling-text-container {
    border-radius: 4px;
    overflow: hidden;
    background-color: black;
    border: 5px groove black;
    border-top: none;
    border-left: none;
}

/* Inner container styles */
.scrolling-text-inner {
    display: flex;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 0;
}

/* Text styles */
.scrolling-text {
    display: flex;
    color: #f8f8f8;
}

.scrolling-text-item {
    padding: 0 30px;
}

/* Apply the animation to the text items */
.scrolling-text-inner>div {
    animation: var(--direction) var(--marquee-speed) linear infinite;
}

.scrolling-text-inner.paused > div {
    animation-play-state: paused;
}

/* Setting the Animation using Keyframes */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}

#marquee_container
{
  display: flex; 
}

#marquee_controls
{
    cursor: pointer;
}


#button_marquee
{
    background-image: url("images/textures/blackmarble.jpg");

    width: 75%;
    margin: auto;

    border: 5px groove white;
    border-top: none;
}
