.header { display: flex; justify-content: center; align-items: center; padding: 20px; background-color: #f0f0f0; } .logo-container { position: relative; width: 432px; height: 200px; } #infinity-loop { width: 100%; height: 100%; } #flame { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100px; height: 100px; } /* Flame animation */ @keyframes flicker { 0% { transform: translate(0, 0) scale(1); } 25% { transform: translate(-2px, -3px) scale(1.03); } 50% { transform: translate(0, -5px) scale(1.05); } 75% { transform: translate(2px, -3px) scale(1.03); } 100% { transform: translate(0, 0) scale(1); } } #flame-group { transform-origin: 50px 100px; /* Adjusted for new flame size */ animation: flicker 1.2s infinite alternate; }
Scroll to Top