
.ingredients-about {
    position: absolute;
    width: 300px; 
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; 
    z-index: 2;
    animation: rotateAroundLogo 20s linear infinite;
}

.ingredient {
    position: absolute;
    width: 60px;
    height: 60px;
    transform-origin: center center;
}

@keyframes rotateAroundLogo {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
