.color-bar-wrapper {
  width: 100%;
  background-color: #003d4c;
  transition: background-color 0.3s ease;
}
.color-bar-wrapper:hover {
  background-color: #000000;
}
.color-bar-wrapper a {
  display: flex; /* Allows centering */
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */
  min-height: 60px; /* Defines the height of the bar */
  width: 100%;
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1.5px;
  font-size: 18px;
  text-transform: uppercase;
}