diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html
index 4070d32767..724bc6dc12 100644
--- a/01 - JavaScript Drum Kit/index-START.html
+++ b/01 - JavaScript Drum Kit/index-START.html
@@ -58,7 +58,28 @@
diff --git a/02 - JS and CSS Clock/index-START.html b/02 - JS and CSS Clock/index-START.html
index 12f721b183..3f07399214 100644
--- a/02 - JS and CSS Clock/index-START.html
+++ b/02 - JS and CSS Clock/index-START.html
@@ -62,13 +62,52 @@
background: black;
position: absolute;
top: 50%;
+ /* Move rotate axis to the right-most edge */
+ transform-origin: 100%;
+ /* Align hands at 12 o clock to start */
+ transform: rotate(90deg);
+ /* Smooth out the movement when hand rotates */
+ transition: all 0.05s;
+ transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
+ }
+
+ .hour-hand {
+ background-color: green;
+ }
+
+ .second-hand {
+ background-color: red;
}