button.animated-button{padding:.5rem 2rem;margin-top:3rem;background-color:transparent;color:#fff;border:none;cursor:pointer;transition:.3s;position:relative;overflow:hidden}button.animated-button:hover{transform:scale(1.2);background-color:aqua;box-shadow:0 0 5px #81e2f3,0 0 25px #81e2f3,0 0 50px #81e2f3,0 0 75px #81e2f3,0 0 100px #81e2f3}button.animated-button span:first-child{position:absolute;top:0;left:-100%;width:100%;height:3px;background:linear-gradient(90deg,transparent,#03e9f4);animation:btn-animation1 1s linear infinite}@keyframes btn-animation1{0%{left:-100%}50%,to{left:100%}}button.animated-button span:nth-child(2){position:absolute;top:-100%;right:0;width:3px;height:100%;background:linear-gradient(90deg,transparent,#03e9f4);animation:btn-animation2 1s linear infinite;animation-delay:.25s}@keyframes btn-animation2{0%{top:-100%}50%,to{top:100%}}button.animated-button span:nth-child(3){position:absolute;bottom:0;right:-100%;width:100%;height:3px;background:linear-gradient(90deg,transparent,#03e9f4);animation:btn-animation3 1s linear infinite;animation-delay:.5s}@keyframes btn-animation3{0%{right:-100%}50%,to{right:100%}}button.animated-button span:nth-child(4){position:absolute;bottom:-100%;left:0;width:3px;height:100%;background:linear-gradient(90deg,transparent,#03e9f4);animation:btn-animation4 1s linear infinite;animation-delay:.75s}@keyframes btn-animation4{0%{bottom:-100%}50%,to{bottom:100%}}