.homegallery {
	width:100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.homegallery img {
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
}
