body {
  text-align: center;
	background-color: whitesmoke;
}

h1 {
	color: black;
}
p { 
	color: dimgrey;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
}

.image-grid img {
  width: 100%; 
  height: auto;
  object-fit: cover; 
  display: block; 
}