.my-link {
  transition: all 0.3s ease;
  color: inherit; /* обычный цвет */
  text-decoration: none;
}

/* При наведении */
.my-link:hover {
  color: #ffffff !important;
  text-decoration: underline;
  text-decoration-color: #ffffff; 
  cursor: pointer;
}
