.animated-box { background: linear-gradient(45deg, #f3f4f6, #e2e8f0); border: 1px solid #cbd5e1; border-radius: 8px; padding: 20px; margin: 20px auto; max-width: 600px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); position: relative; overflow: hidden; animation: backgroundAnimation 8s infinite; } @keyframes backgroundAnimation { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } .animated-box .icon { font-size: 40px; margin-bottom: 10px; } .animated-box ol { list-style-type: decimal; padding-left: 20px; } .animated-box li { margin-bottom: 15px; font-size: 16px; line-height: 1.5; transition: font-size 0.3s ease; } .animated-box li:hover { font-size: 18px; } .animated-box a { color: #007bff; text-decoration: none; transition: color 0.3s ease; } .animated-box a:hover { color: #0056b3; }