.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* two columns */
  gap: 10px;
  width: 100%;
}

.gallery img {
  width: 100%;
  height: auto;
  display: block;
}

body {
  background-color: black;
}