diff --git a/semag/star/index.html b/semag/star/index.html
index 2c176291..dd174bba 100644
--- a/semag/star/index.html
+++ b/semag/star/index.html
@@ -180,6 +180,14 @@ font-family: 'Press Start 2P', sans-serif;
}, false);
})();
+$(document).ready(function(){
+ $(".star").click(function(){
+ $(this).css("transform", "scale(1.2)");
+ setTimeout(() => {
+ $(this).css("transform", "scale(1)");
+ }, 100);
+ });
+});