diff --git a/styles.css b/styles.css index 8b47b7a..ed17414 100644 --- a/styles.css +++ b/styles.css @@ -704,31 +704,6 @@ html, body { animation: blinkColors 2s linear infinite, blinkVisibility 1s steps(2, start) infinite; } -@keyframes floatButton { - 0% { - transform: translate(50px, 50px); /* Start position */ - } - 20% { - transform: translate(100px, -100px); /* Move to top-right */ - } - 40% { - transform: translate(100px, 0); /* Move to far right */ - } - 60% { - transform: translate(100px, 0px); /* Move to bottom-right */ - } - 80% { - transform: translate(0, 100px); /* Move to bottom */ - } - 100% { - transform: translate(-100px, 100px); /* Move to bottom-left */ - } -} - -#celebrate-button { - animation: floatButton 12s ease-in-out infinite; /* Loop animation */ -} - .card:hover { transform: scale(1.05); /* Slightly enlarge on hover */ }