I just removed display:grid
and made
.grid-wrapper {
flex-flow: wrap;
display: flex;
gap: 1.5rem;
justify-content: center;
align-content: start;
width: 500px;
}
.grid-item {
background: gray;
height: 80px;
width: 80px;
}
based on your example