/* Container holding the text */
.flashing-names-container {
  width: 100%;
  height: 100px; /* Adjust based on the need (can go up to 150px) */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Styling the text */
.flashing-text {
  font-size: 1.3rem;
  font-weight: 300; /* Lighter weight */
  text-align: center;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease, border 0.6s ease;
}

/* Text and background changes for responsiveness */
@media (min-width: 768px) {
  .flashing-text {
    font-size: 1.5rem;
  }
}

/* Adding a glowing border animation */
.flashing-text.active {
  border-color: #104C8B; /* Blue brand color for border */
  background-color: #fff; /* Contrast background */
  color: #D3191D; /* Red text */
}