.gallery {
  display: grid;
  grid-template-columns: repeat(3, 360px);
  gap: 24px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  height: 100vh;
  align-content: center;
  justify-content: center;
}

.gallery-item {
  width: 100%;
}

.gallery-image {
  width: 360px;
  height: 200px;
  object-fit: cover;
  display: block;
}
