diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html
index 4070d32767..65f5dd6e73 100644
--- a/01 - JavaScript Drum Kit/index-START.html
+++ b/01 - JavaScript Drum Kit/index-START.html
@@ -59,6 +59,25 @@
diff --git a/01 - JavaScript Drum Kit/style.css b/01 - JavaScript Drum Kit/style.css
index 3e0a320b37..6798a9fe16 100644
--- a/01 - JavaScript Drum Kit/style.css
+++ b/01 - JavaScript Drum Kit/style.css
@@ -28,7 +28,7 @@ body,html {
text-align: center;
color:white;
background:rgba(0,0,0,0.4);
- text-shadow:0 0 5px black;
+ text-shadow: 0 0 5px black;
}
.playing {
diff --git a/02 - JS + CSS Clock/index-START.html b/02 - JS + CSS Clock/index-START.html
index 2712384201..339f96763b 100644
--- a/02 - JS + CSS Clock/index-START.html
+++ b/02 - JS + CSS Clock/index-START.html
@@ -61,12 +61,40 @@
background:black;
position: absolute;
top:50%;
+ transform-origin: 100%; /*Changes the origin the transform will pivot from to the far right*/
+ transform: rotate(90deg); /*So the clock starts at 12:00*/
+ transition: all 0.05s;
+ transition-timing-function: cubic-bezier(0, 1.66, 0.58, 1);
}