<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<div class="main">
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</body>
<style>
.main{
width:100% ;
display: flex;
justify-content: center;
flex-wrap: wrap;/* Совсем не обязательно, нужно, чтобы когда элементу не было места, он переносился */
}
.main div{
width:400px ;
height: 260px;
border-radius: 20px;
background-color: black;
margin: 0px 25px 50px 25px;
}
</style>
</html>