Hint: First detect the portal by typing scan portal
Example: Change the portal glow effect.
document.querySelector(".portal").style.boxShadow="0 0 200px blue"
In JavaScript developers can change how elements look by modifying their style.
The example above changes the glow effect using style.boxShadow.
Developers can also change the actual color of the portal using the background property.
Hint: Try using document.querySelector(".portal").style.backgroundColor
Mission: Change the portal color to GREEN