diff --git a/public/index.html b/public/index.html
index 99650d0d9..c22dd16b1 100644
--- a/public/index.html
+++ b/public/index.html
@@ -1,61 +1,11 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Animated Buttons
-
-
-
-
-
-
-
+
+
+
+ Animated Button
+
+
+
+
+
diff --git a/public/style.css b/public/style.css
new file mode 100644
index 000000000..6864141ac
--- /dev/null
+++ b/public/style.css
@@ -0,0 +1,26 @@
+.animated-button {
+ background-color: #4CAF50;
+ border: none;
+ color: white;
+ padding: 10px 20px;
+ text-align: center;
+ text-decoration: none;
+ display: inline-block;
+ font-size: 16px;
+ margin: 4px 2px;
+ cursor: pointer;
+ transition-duration: 0.4s;
+}
+
+.animated-button:hover {
+ background-color: white;
+ color: #4CAF50;
+ box-shadow: 0 0 20px #4CAF50;
+}
+
+.animated-button:active {
+ background-color: #4CAF50;
+ color: white;
+ transform: translateY(2px);
+ box-shadow: 0 0 10px #4CAF50;
+}
\ No newline at end of file