diff --git a/index.css b/index.css index 6255a74..2e705bb 100644 --- a/index.css +++ b/index.css @@ -2322,10 +2322,22 @@ transition: all var(--transition-normal); border: none; cursor: pointer; + animation: button-glow 1.5s ease-in-out infinite; +} + +@keyframes button-glow { + 0%, 100% { + box-shadow: 0px 4px 24px 0px rgba(174, 114, 249, 0.5); + } + 50% { + box-shadow: 0px 4px 28px 0px rgba(174, 114, 249, 0.8), 0px 0px 16px 0px rgba(166, 255, 234, 0.4); + } } .hero-button:hover { background-color: #9a5ef0; + animation: none; + box-shadow: 0px 4px 32px 0px rgba(174, 114, 249, 0.6); } .hero-button:active {