demo-container { display: block; border: 2px solid rgb(189, 189, 189); padding: 25px 10px 10px; border-radius: 4px; width: fit-content; height: fit-content; }
demo-object { flex-wrap: wrap; }
outer-flex { text-align: left; width: 250px; height: 250px; overflow-x: scroll; display: flex; box-sizing: border-box; border: 1px solid black; }
inner-flex { flex: 0 0 250px; width: 250px; background-color: rebeccapurple; color: white; font-size: 30px; display: flex; align-items: center; justify-content: center; scroll-snap-align: start; }
inner-flex:nth-child(2n) {
	background-color: white;
	color: rebeccapurple;
}
.element { scroll-snap-type: x mandatory; }