/* .neon_bar {
    left: 0;
    right: 0;
    height: 20px;
    position: absolute;
    background-color: #111;
}

.neon_bar.top {
    top: -20px;
}

.neon_bar.bottom {
    bottom: -20px;
}

.neon_bar:after, .neon_bar:before {
    height: 5px;
    content: ' ';
    display: block;
    position: absolute;
    box-shadow: 0px 0px 6px 0px black;
    border-radius: 5px;
    background-color: #320f42;
    animation-name: flicker;
    animation-delay: 3.5s;
    animation-duration: 6s;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
}

.neon_bar:after {
    top: 2px;
    left: -5px;
    right: -5px;
    bottom: 5px;
}

.neon_bar:before {
    top: 10px;
    left: -5px;
    right: -5px;
    bottom: 5px;
}
*/

@keyframes flicker {
    35%, 37%, 39%, 41%, 100% {
        background: #d000d0;
        box-shadow: 0px 0px 6px 0px #d000d0;
        background-color: #d000d0;
        background-image: linear-gradient(#6a006a, #d000d0, #6a006a);
    }
    0%, 34%, 36%, 38%, 40% {
        background: #320f42;
        box-shadow: 0px 0px 6px 0px black;
        background-color: #d000d0;
        background-image: linear-gradient(black, #320f42, black);
    }
}

.movie-poster-small {
  width: 50px;
  height: auto;
  margin-right: 10px;
  vertical-align: middle;
}

.marquee-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1em;
  margin: 1em 0;
}

#marquee {
  width: 45%; /* Set a fixed width for each marquee */
  margin: 0;
  padding: 1em;
  text-align: center;
  font-size: 1.2em;
}

@media (max-width: 768px) {
  #marquee {
    width: 100%; /* Full width on smaller screens */
    font-size: 1em;
    padding: 0.5em;
  }
}
.marquee_message {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
