.container{
  display: flex;
  padding: 24px;
  background-color: lightgrey;
  gap: 16px;
}
.container > * {
  width: 96px;
  height: 96px;
  line-height: 96px;
  color: white;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}
.container > *:nth-child(1) {
  order: 3;
  background-color: dodgerblue;
}
.container > *:nth-child(2) {
  order: 2;
  background-color: olivedrab;
}
.container > *:nth-child(3) {
  order: 4;
  background-color: purple;
}
.container > *:nth-child(4) {
  order: 1;
  background-color: orangered;
}