img {
  max-width: 100%;
  border-radius: 10px;
}

.wrapper {
  list-style: none;
  display: flex; 
}

.wrapper li {
  box-sizing: border-box;
  padding: 1em;
  min-width: 1%;
  flex: 1 0 25%;
}

.wrapper li:nth-child(2) {
  align-self: center;
}

.wrapper li:nth-child(3) {
  align-self: flex-start;
}

.wrapper li:nth-child(4) {
  align-self: flex-end;
}