Create a function that takes a phrase and transforms each word using the following rules:
-.partially_hide("skies were pretty") ➞ "s---s w--e p----y"
partially_hide("red is not my color") ➞ "r-d is n-t my c---r"
partially_hide("She rolled her eyes") ➞ "S-e r----d h-r e--s"
partially_hide("Harry went to fight the basilisk") ➞ "H---y w--t to f---t t-e b------k"
Words with two or fewer letters should not be hidden at all.