<div class="grid">
<div class="box-outer"></div>
<div class="box-outer"></div>
<div class="box-outer"></div>
<div class="box-outer"></div>
</div>
<div class="box-abs"></div>
<style>
body {
width: 100%;
height: 100%;
margin: 0;
background: #D9D9D9;
}
.grid {
height: 100%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 5rem;
}
.box-outer {
width: 10rem;
height: 6.9rem;
background: #2E312B;
}
.box-abs {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 2.5rem;
height: 2.5rem;
background: #2E312B;
border: 1.3rem solid #7AA70A;
}
</style>