<div class="stars29-header">
<img
src="https://stars29.co.zw/wp-content/uploads/2026/02/cropped-cropped-Untitled-design-1.png"
class="stars29-logo"
id="starsLogo"
/>
<div class="stars29-text" id="starsText">
BIG 29
</div>
</div>
<style>
.stars29-header{
display:flex;
align-items:center;
justify-content:center;
position:relative;
height:80px;
}
/* LOGO */
.stars29-logo{
height:60px;
animation:logoGlow 2s ease-in-out infinite alternate;
transition:opacity 0.8s ease;
}
/* BIG 29 TEXT */
.stars29-text{
position:absolute;
font-size:36px;
font-weight:900;
letter-spacing:3px;
color:#ffffff;
opacity:0;
text-shadow:
0 0 6px #ff0000,
0 0 12px #ff0000,
0 0 18px #ffffff,
0 0 24px #ff0000;
}
/* GLOW ANIMATION */
@keyframes logoGlow{
from{
filter:drop-shadow(0 0 6px #ff0000)
drop-shadow(0 0 12px #ffffff);
}
to{
filter:drop-shadow(0 0 16px #ff0000)
drop-shadow(0 0 26px #ffffff);
}
}
</style>
<script>
setTimeout(function(){
document.getElementById("starsLogo").style.opacity="0";
document.getElementById("starsText").style.opacity="1";
},3000);
</script>