.zuphologo {
padding-top: 33%;
padding-bottom: 2%;
}
.fx {
box-shadow: 0px 0px 100px 4px #fff;
animation: glow 1.5s linear infinite alternate;
}
@keyframes glow{
to {
box-shadow: 0px 0px 30px 20px #fff;
}
}
<div class="container">
<div class="row">
<div class="col text-center zuphologo">
<a href="google.co.uk">
<img src="assets/img/logo.png" width="150" class="fx glowing purple">
</a><br>
<img src="assets/img/logoMyZupho.png" width="250" class="myzuphologo"><br>
<p class="mylove">my love / mon amour / il mio amore / mi amore</p>
</div>
</div>
</div>
The logo on this website already has an animated effect:
However, the hover effect appears in a square shape rather than wrapping around the pentagon logo. How can I adjust it to wrap around the logo properly?