.rotatingContainer{animation:rotateAnimation 8s linear infinite}@keyframes rotateAnimation{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes slideIn{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes slideUp{0%{transform:translateY(20px);opacity:0}to{transform:translateY(0);opacity:1}}.animate-fadeIn{animation:fadeIn 1.5s ease-in-out}.animate-slideIn{animation:slideIn 1s ease-out forwards}.animate-slideUp{animation:slideUp 1s ease-out forwards}