html,body{
    height: 100%;
    margin: 0 auto;
    font-family: "Sedan",'Roboto', sans-serif;
    font-weight: 400;
    font-size: large;
	color: bisque;
	background-color: black;
}
.menu_heading{
	display: flex;
    align-items: center;
    justify-content: center;
	margin-top: 70px;
}
.menuContainer{
    /* display: flex; */
	margin: auto;
	
    justify-content: center;
}
.category {
		display: flex;
		flex-direction: column;
		align-content: space-between;
		justify-content: center;
		align-items: center;
}
.itemlist_container{
	display: flex;
    flex-direction: column;
	padding: 0px;
	margin: 0px;
	margin-bottom: 10px;
	/* height: 250px; */
	width: 250px;
}
.itemList {
    list-style: none;
    display: flex;
    justify-content: space-between;
	align-items: center
}
.item{
	padding: 5px;
	margin: 5px;
}
