diff --git a/projects/clock/index.html b/projects/clock/index.html
index cb0ff41..875b6a2 100644
--- a/projects/clock/index.html
+++ b/projects/clock/index.html
@@ -24,6 +24,7 @@
         src="https://upload.wikimedia.org/wikipedia/en/thumb/9/95/Rolex_logo.svg/1200px-Rolex_logo.svg.png"
         alt=""
       />
+      <button>Reset</button>
     </div>
     <script src="index.js"></script>
   </body>
diff --git a/projects/clock/style.css b/projects/clock/style.css
index ce2a2e9..819d85b 100644
--- a/projects/clock/style.css
+++ b/projects/clock/style.css
@@ -103,5 +103,12 @@ img {
   transform: rotate(250deg);
  
 }
-
+button{
+  padding: 10px 20px;
+  border-radius: 12px;
+  background-color: rgba(211,211,211);
+  border-color: rgba(169,169,169);
+  margin-top: 54px;
+  margin-left: 132px;
+}