Свойство justify-content определяет выравнивание элементов вдоль главной оси флекс-контейнера. Значение flex-end прижимает элементы к концу контейнера.
.container {
display: flex;
justify-content: flex-end;
}
.container { position: relative; }
.rabbits, .hats { position: absolute; width: 100%; }
.hats { display:flex; justify-content: flex-end; }
.rabbits img, .hats img { width: 100px; height: auto; }