Mastery Games’s Flexbox Zombies

It’s a very long game, that’s why I just included the solution for the last level as a kind of souvenir.

Chapter 12 - Level 11

crossbow {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.target.dave {
  order: 1;
  align-self: flex-start;
}
  
.target.goo {
  align-self: flex-end;
}