.animation{display:flex;justify-content:center;align-items:center;overflow:hidden}.animation-cube{width:100px;height:100px;background:linear-gradient(45deg,#ff5733,#33ff57,#5733ff,#ff5733);background-size:400% 400%;animation:gradientAnimation 15s ease infinite,rotate 20s linear infinite}@keyframes gradientAnimation{0%{background-position:0}100%{background-position:100%}}@keyframes rotate{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.glowing-text{text-align:center;color:#fff;background:linear-gradient(90deg,#ff6a00,#ee0979,#00a8cc);background-size:200% 200%;background-clip:text;-webkit-background-clip:text;color:transparent;animation:glow 4s linear infinite}@keyframes glow{0%{background-position:0 0}100%{background-position:200% 0}}