Свойство flex-direction определяет направление главной оси флекс-контейнера. Значение column указывает что ось идёт сверху вниз.
.container {
display: flex;
flex-direction: column;
}
.container { position: relative; }
.rabbits, .hats { position: absolute; width: 100%; }
.hats { display:flex; flex-direction: column; }
.rabbits img, .hats img { width: 100px; height: auto; }