Я хочу создать веб-сайт, и в этом у меня есть что-то вроде «о нас» и хочу поместить такие данные

Но Я хочу установить расстояние между предметами и установить его по центру.
.card {
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
max-width: 500px;
margin: 0 auto;
text-align: center;
font-family: arial;
display: inline-block;
justify-content: center;
align-items: center;
}
.title {
color: grey;
font-size: 18px;
}
a {
text-decoration: none;
font-size: 22px;
color: black;
}
button:hover,
a:hover {
opacity: 0.7;
}
img {
display: flex;
}
<body>
<div class="card">
<img src="img/1.jpg" alt="John" style="width:100%">
<h1>John Doe</h1>
<p class="title">Що робил(а)</p>
<p>Навчання</p>
<div style="margin: 24px 0;">
<a href="#"><i class="fa fa-dribbble"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
</div>
</div>
<div class="card">
<img src="img/1.jpg" alt="John" style="width:100%">
<h1>John Doe</h1>
<p class="title">Що робил(а)</p>
<p>Навчання</p>
<div style="margin: 24px 0;">
<a href="#"><i class="fa fa-dribbble"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-facebook"></i></a>
</div>
</div>
</body>