/* left side bottles animation */
@keyframes rotate {
    from { transform: rotate(-15deg);}
    to { transform: rotate(0deg);}
}

#yellow-large-bottle img {
    animation: rotate 1.5s ease 200ms forwards;
}

#blue-large-bottle img {
    animation: rotate 1.5s ease 400ms forwards;
}