// Source - https://stackoverflow.com/a/68778493
// Posted by Alexandr Shulaev, modified by community. See post 'Timeline' for change history
// Retrieved 2025-11-20, License - CC BY-SA 4.0
$('.card').click(function(e){
e.preventDefault();
$(this).toggleClass('flipped');
})