this may be a simple question but I can't figure out why this image (id=daftfont) wont center? Currently I am just trying to center these two images on the page. Margin:auto; worked for the second image just fine, however the first image wont center. I am a beginner so I'm having trouble figuring out why. I appreciate any insight.
    <style>
    body{
     background-color: black;
     }
    #daftfont{
     margin:auto;
     width:170px;
     }
    #daft{
     margin:auto;
     width:200px;
     height:200px;
     border-style:solid;
     border-color:white;
    }
    </style>
     <img id="daftfont" src="https://i.ibb.co/nbFjzX6/daft-punk-transparent.png">
  
     <div id="daft">
      <img src="https://i.ibb.co/4pFZZc4/Daft-Punk-200x200.jpg">
     </div>