diff --git a/index.html b/index.html
index 9330567..f76fddb 100644
--- a/index.html
+++ b/index.html
@@ -46,6 +46,15 @@
vertical-align: super;
font-size: 50%;
}
+ .blink {
+ -webkit-animation: blinker 0.5s infinite;
+ -moz-animation: blinker 0.5s infinite;
+ animation: blinker 0.5s infinite;
+ }
+ @keyframes blinker {
+ 0% { opacity: 0.00; }
+ 100% { opacity: 1.00; }
+ }