Tentei aplicar um delay no hover, mas nao vai de jeito nenhum.
Meu css:
header {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #f9f9f9;
padding: 0 2rem;
}
header ul {
display: flex;
}
header li{
list-style: none;
}
header li:last-child a{
margin-right:0;
}
header li a#primeiro{
color:#ee6666;
font-weight: bold;
}
header li:hover{
text-decoration: underline;
transition-delay: 5s;
}
header a {
color:#808080;
margin-right: 1.25rem;
text-decoration: none;
}