.glowing-text-container {
  background: linear-gradient(90deg, #d3d3d3, #b0bec5, #cfd8dc, #b0bec5, #d3d3d3); /* Neutral gradient colors */
  background-size: 500% 500%;
  animation: glowing-colors 8s ease infinite;
  padding: 5px 0;
  color: #333333; /* Dark gray text for readability */
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  font-family: 'Roboto', sans-serif;
  border: 2px solid #cccccc; /* Soft border */
  box-shadow: 0 0 15px rgba(200, 200, 200, 0.4); /* Subtle glowing effect */
}

/* Link styling */
.glowing-text-container a {
  color: #333333; /* Match text color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.glowing-text-container a:hover {
  color: #000000; /* Darker on hover */
}

/* Keyframes remain the same */
@keyframes glowing-colors {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
