boa noite, alguém sabe me informar porque não esta aparecendo correto o icone do instagram, obrigado
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Botão Flutuante Instagram</title>
<style>
.instagram-float {
position: fixed;
bottom: 120px;
right: 40px;
background-color: #E1306C;
color: white;
border-radius: 50%;
width: 60px;
height: 60px;
display: flex;
justify-content: center;
align-items: center;
box-shadow: 1px 1px 2px #888;
text-decoration: none;
font-size: 30px;
z-index: 1000;
text-align: center;
}
.instagram-float:hover {
transform: scale(1.1);
}
</style>
</head>
<body>
<a href="https://www.instagram.com/sabrina_kibatata" target="_blank" class="instagram-float" aria-label="Instagram">
</a>
<script src="https://kit.fontawesome.com/a076d05399.js" crossorigin="anonymous"></script>
</body>
</html>