// Dynamically set the size of the container
document.addEventListener("DOMContentLoaded", function() {
var container = document.getElementById('clickable-area');
container.style.height = container.offsetWidth * 0.5625 + 'px'; // Maintain 16:9 aspect ratio
});