I am trying to align 3 divs inside a flex container in the center of the page with equal distance between them and also from the edge of the page.
.container {
display : flex;
width : 60%;
}
.para {
width : 33%;
padding : 1em;
border:.5px solid black;
margin :1em;
}
<div class = "container">
<div class ="para one">content here</div>
<div class ="para two">content here</div>
<div class ="para three">content here</div>
</div>