article {
  width: 100%;
  height: 600px;
  margin: 10px auto;

}

section {
 
  padding: 0px 0px;
}

img {
  border: 0px solid black;
  margin-right: 1px;
}
.base img {
  width: 100%;
  height: 600px;
}
.fill img {
  object-fit: fill;
}

.contain img {
  object-fit: contain;
}

.cover img {
  object-fit: cover;
}

.scale-down img {
  object-fit: scale-down;
}

.none img {
  object-fit: none;
}