diff --git a/index.html b/index.html index 33e135b..f354a28 100644 --- a/index.html +++ b/index.html @@ -43,6 +43,22 @@ ::-webkit-scrollbar-thumb:hover { background: #475569; } + + @keyframes bounce-subtle { + + 0%, + 100% { + transform: translateY(0); + } + + 50% { + transform: translateY(-3px); + } + } + + .animate-bounce-subtle { + animation: bounce-subtle 2s ease-in-out infinite; + }