.underline-button {
  text-decoration: none;
  color: inherit; /* Изначальный цвет текста */
  transition: color 0.3s ease; /* Плавный переход цвета */
}

.underline-button:hover {
  color: black; /* Меняем цвет текста на чёрный при наведении */
}
