diff --git a/css/style.css b/css/style.css index 9b44349..caa0b95 100644 --- a/css/style.css +++ b/css/style.css @@ -333,3 +333,32 @@ footer { color: #bdc3c7; font-size: 18px; } + +.top-btn { + width: 50px; + height: 50px; + padding: 10px; + position: fixed; + bottom: 0; + right: 0; + z-index: 10; + margin-right: 10px; + margin-bottom: 10px; + display: none; + border-radius: 50%; +} + +.arrow-icon { + animation: bounce 2s infinite ease-in-out; + -webkit-animation: bounce 2s infinite ease-in-out; +} + +@keyframes bounce { + 0%, + 100% { + transform: translateY(0px); + } + 50% { + transform: translateY(-20%); + } +} diff --git a/index.html b/index.html index a4e1ad9..11635b3 100644 --- a/index.html +++ b/index.html @@ -1930,6 +1930,43 @@

uuphoria

+ + +