.container {
	display: flex;
}
.container.space-around {
	justify-content: space-around;
}
.container.space-between {  
	justify-content: space-between;
}

