Want div to start on left. Small space do not want. Tried setting margin and padding to 0 in my div labeled container and the div itself, nothing changes. Any help would be much appreciated.
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<style>
    .container{
    display:flex;
    }
    .box{
    background-color:black;
    }
</style>
<body>
 <div class="container">
  <div class="box">box</div>
 </div>
</body>
</html>