body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.grid-container {
  display: grid;
  /* grid-template-columns: repeat(5, 1fr); ORIGINAL */
  grid-template-columns: repeat(4, 1fr);
  /* Maximum 5 items per row */
  width: 100%;
  /* Fit the grid to the full width of the screen */
  height: auto;
  /* Adjust height dynamically */
  gap: 0;
  /* Remove gaps between grid items */
  margin: 0;
  padding: 0;
}

.grid-item {
  width: 100%;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Maintain image proportions and fill the grid */
  /* display: block; */
}

@media screen and (max-width: 800px) {
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
    /* 3 items per row on medium screens */
  }
}

@media screen and (max-width: 480px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    /* 2 items per row on small screens */
  }
}
