:root {

  --kolor_menu_normal: #32848A;  /* color: var(--kolor_menu_normal); */
  
}




#banner-container {
  position: fixed;
  width: 300px; /* szerokość banera */
  height: 30px; /* wysokość banera */
  /*background-color: rgba(173, 216, 230, 0.6); */ /* kolor tła banera */
  overflow: hidden;
  top: 50%; /* środek pionowy */
  left: 0;
  z-index: 1;
  padding-top: 2px; /* odstęp od górnej krawędzi */
  transform: translateY(-50%); /* wyśrodkowanie pionowe */

  display: none;
  box-sizing: border-box;

}

#scrolling-banner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120px; /* wysokość banera x liczba zdań */
  padding-left: 20px; /* odstęp od lewej krawędzi */
  animation: scroll-up 15s linear infinite;
}

@keyframes scroll-up {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-300%); /* wysokość banera x liczba zdań */
  }
}

#scrolling-banner p {
  font-size: 20px;
  /*margin: 10px;*/
  font-weight: 900;
  text-align: left;
  color: white;
  padding: 10px;
  border-radius: 5px;
  opacity: 0.5;
  /*background-color: rgba(173, 216, 230, 0.6);*/
  background-color: var(--kolor_menu_normal);
  box-sizing: border-box;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.9);
}



@media (min-width: 1400px) {
  #banner-container {
    display: flex;
  }
}



#center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  padding: 10px; /* Dodaje padding do tekstu, aby zapewnić czytelność */
  background-color: rgba(0, 0, 0, 0.5); /* Dodaje półprzezroczyste tło dla lepszej czytelności tekstu */


}


