

#bbq {
    max-width: 400px;
    height: 50%;
    margin-left: 40px;
    margin-top: 100px;
}


/* 
    fumée
*/
#Smoke {
    /* background-color: blue; */
    animation-name: smoke;
    animation-duration: 5s;
    /* animation-delay: 1s; */
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes smoke {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
        /* transform: rotateX(5deg); */
    }
}

/* 
    saucisses
*/
#Sausages {
    /* background-color: blue; */
    /* filter: brighness(50%); */
    animation-name: sausages;
    animation-duration: 300s;
    /* animation-delay: 1s; */
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes sausages {
    0% {
        filter: brightness(100%);
    }
    100% {
        filter: brightness(33%);
        /* opacity: 0; */
        /* transform: rotateX(5deg); */
    }
}
