.glowing-text-container {
  background-color: #6e797a;  /* Dark background for the container */
  padding: 10px 0;
  color: #f5f5f5;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

/* Link styling */
.glowing-text-container a {
  color: #f5f5f5;
  text-decoration: none;
  font-weight: bold;
  animation: blink 1.5s infinite;  /* Apply blink animation */
}

/* Blinking animation */
@keyframes blink {
  0% {
    opacity: 1;  /* Fully visible */
  }
  50% {
    opacity: 0;  /* Invisible */
  }
  100% {
    opacity: 1;  /* Fully visible again */
  }
}

/* Hover effect to change color */
.glowing-text-container a:hover {
  color: #ffa726;  /* Change to orange when hovered */
}
