I would like the text to underline when I hover over it, with a slight transition to make it look nice, but it underlines directly and the transition doesn't occur, what's my mistake?
.habilidades__titulo {
text-decoration: none;
text-align: center;
font-size: 48px;
color: var(--branco-principal);
}
.habilidades__titulo:hover {
text-decoration: underline;
transition: 2s all;
}
<a href="#" class="habilidades__titulo">
title
</a>