Mini Savanna Ecosystem body { background: #111; color: white; font-family: sans-serif; text-align: center; } svg { margin-top: 1rem; background: linear-gradient(skyblue, sandybrown); border: 2px solid white; } .sun { fill: gold; } .elephant { fill: gray; } .tree { fill: green; } 🌿 Mini Savanna Ecosystem Rain ☔ Drought ☀️ let elephant = document.getElementById('elephant'); let dx = 1; function moveElephant() { let x = parseFloat(elephant.getAttribute('cx')); x += dx; if (x > 380 || x