body {
  margin: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
  overflow: hidden;
  user-select: none;
}

#gallery-container {
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(0, -50%);
}

.image {
  width: 300px;
  height: 460px;
  margin-right: 4vmin;
  object-fit: cover;
  object-position: 100% 50%;
  pointer-events: none;
}

.image:nth-last-child(1) {
  margin-right: 0;
}