.gallery{
display: grid;
grid-template-columns: repeat( auto-fit, minmax(250px, 1fr) );
grid-template-rows: repeat( auto-fit, minmax(250px, 1fr) );
Could you assist me with identifying the spacing issue between the first and second lines in the grid layout? The other lines appear to be working correctly. I have included a global reset CSS rule
*{
margin: 0;
padding: 0;}
Your help is appreciated.