change color of div inside iframe using javascript

I have this iframe tag that is coming from server in my html page

<html>
<script>
    window.onload = () => {
...
..
  function() {
      document.getElementsByClassName("container").style.backgroundColor ="blue";
    }, 5000);
<body>
  <div id="loadiframe" />
</body>
</html>

i want to change the background color of div inside iframe