@charset "utf-8";

ul {
	list-style-type: none;
	display: flex;
	border: 1px solid #4e4e4e;
}

li {
	display: flex;
    flex: 0 0 auto;
	padding: 10px;
	margin: 10px;
	background-color: #8cacea;
	color: #fff;
	font-size: 1em;
}

@media screen and (max-width: 769px) {
/*code here only applies to the screen devices that have a width lesser than 769px*/
ul {
	flex-direction: column; /*On samller devices, switch the direction*/
}