diff --git a/index.html b/index.html index f4e1add..f72d7f9 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,7 @@ + + + @@ -66,10 +69,10 @@
-

- Unlimited Movies TV,
- Shows and More. -

+
+

Unlimited Movies TV, + Shows and More.

+

Watch anywhere and cancel anytime.

Ready to watch? Enter your email to create or restart your @@ -91,7 +94,10 @@

-

Enjoy on your TV.

+

+ Enjoy on your TV. +

+
Watch on smart TVs, PlayStation, Xbox, Chromecast, Apple TV, Blu-ray players and more. @@ -360,6 +366,8 @@

Questions? Call 000-800-040-1843

> + +
diff --git a/style.css b/style.css new file mode 100644 index 0000000..bd0f1ed --- /dev/null +++ b/style.css @@ -0,0 +1,28 @@ + + + /* DEMO-SPECIFIC STYLES */ + .typewriter h1 { + color: #fff; + font-family: monospace; + font-size: 50px; + overflow: hidden; /* Ensures the content is not revealed until the animation */ + border-right: .15em solid orange; /* The typwriter cursor */ + white-space: nowrap; /* Keeps the content on a single line */ + margin: 0 auto; /* Gives that scrolling effect as the typing happens */ + letter-spacing: 0.1em; /* Adjust as needed */ + animation: + typing 3.5s steps(30, end), + blink-caret .5s step-end infinite; + } + + /* The typing effect */ + @keyframes typing { + from { width: 0 } + to { width: 100% } + } + + /* The typewriter cursor effect */ + @keyframes blink-caret { + from, to { border-color: transparent } + 50% { border-color: orange } + } \ No newline at end of file