main .newWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 65vh;
}

main .newWrapper div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px; /* Adjust the gap between items as needed */
}

main .newWrapper div .newItem {
  display: flex;
  justify-content: center; /* Center items within each grid column */
}

main .newWrapper div .newItem:nth-child(odd) {
  justify-content: flex-end; /* Move left column images to the right */
}

main .newWrapper div .newItem:nth-child(even) {
  justify-content: flex-start; /* Move right column images to the left */
}

main .newWrapper div .newItem img {
  height: 25vh;
  width: 25vh;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.newWrapper *:not(.newItem, img) {
  margin: 15px;
}

.newItem img:hover {
  transform: scale(1.05);
}
