
/*Vertical marquee 
SEPT 2025 Nobody voted for this */

.marquee-container {
  width: 100%; /* Adjust as needed */
  height: 120px; /* Adjust as needed */
  overflow: hidden;
  border: 1px solid #ccc;
  position: relative; /* Important for positioning the content */
  color: #d32a26;
}


.marquee-content {
  position: relative;
  width: 100%;
  animation: verticalMarquee 20s linear infinite; /* Adjust duration as needed */
}

.marquee-content b {
  margin: 0;
  white-space: wrap;
  font: 600 24px 'Roboto Condensed', san-serif;
}

@keyframes verticalMarquee {
  0% {
    transform: translateY(20%); /* Start from below the container */
  }
  100% {
    transform: translateY(-90%); /* Move to above the container */
  }
}