Hello, see my solution below, may not be the best solution.
CSS
.opened{
transform: rotateY(180deg);
}
JS
cardContainer.forEach((card) => {
card.addEventListener('click', () => {
card.classList.add('opened');
card.firstElementChild.classList.add('opened');
});
});