Para o link dentro da lista foram usadas as seguintes classes: hover:font-bold, hover:text-primary e hover:duration-300
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#f2dae7'
},
fontFamily: {
titulo: ['Vast Shadow', 'cursive']
}
}
}
}
</script>
</head>
<body>
<div class="flex w-fit m-auto my-10">
<img class="h-44" src="https://img.freepik.com/free-photo/website-development-developer-working-program-codes-office-computer-program-programmer-workplace-programming-code-software-source-code_372999-389.jpg?w=1380" alt="codigo json">
<div class="p-10 flex flex-col bg-gradient-to-r from-pink-300 to-slate-400 justify-center h-44">
<p class="text-6xl font-black text-primary font-titulo">Gabriela</p>
<p class="text-4xl mb-4">Desenvolvedora Front-end</p>
<ul class="flex gap-3 mb-4">
<li><a class="hover:font-bold hover:text-primary hover:duration-300" href="#">Linkedin</a></li>
<li><a class="hover:font-bold hover:text-primary hover:duration-300" href="#">Email</a></li>
<li><a class="hover:font-bold hover:text-primary hover:duration-300" href="#">Github</a></li>
</ul>
</div>
</div>
</body>
</html>