diff --git a/index.html b/index.html
index 45049c0..7adedaf 100644
--- a/index.html
+++ b/index.html
@@ -18,8 +18,8 @@
- Let's
- Solve!
+ Let's
+ Solve!
Double tap to start
diff --git a/style.css b/style.css
index c0da1d2..db22604 100644
--- a/style.css
+++ b/style.css
@@ -225,6 +225,10 @@ body {
bottom: 75%;
font-size: 4.4em;
height: 1.2em;
+ animation: mymove 4s infinite;
+}
+@keyframes mymove {
+ 50% {text-shadow: 1px 10px 0px burlywood;}
}
.text--title span {
display: block;
@@ -241,6 +245,10 @@ body {
bottom: 78%;
font-size: 3.5em;
line-height: 1;
+ animation: mymoves 4s infinite;
+}
+@keyframes mymoves {
+ 50% {color: burlywood;}
}
.text--complete, .text--best-time {
font-size: 1.5em;
@@ -260,6 +268,12 @@ body {
font-size: 1.2em;
color: rgba(0, 0, 0, 0.25);
opacity: 0;
+ transition: 0.4s ease;
+}
+.btn:hover{
+ cursor:pointer;
+ color:black;
+ font-size:1.5em;
}
.btn:after {
position: absolute;
@@ -342,4 +356,4 @@ body {
}
.ui__buttons {
z-index: 5;
-}
\ No newline at end of file
+}