

*{

	margin: 0px;
	padding: 0px;
}

h2{
	margin-top: 10px;
	text-align: center;
	color: blue;
}

body{
	min-width: 280px;
}


/**** BODY ***/

main{
	display: flex;

}

.viewBar{
	
	flex:1;
	min-width: 180px;
	height: 90vh;
	background-color: #2d2;

}

	/**** CATALOGUE ***/

.catalogue{

	display:grid;
	grid-template-columns: auto auto auto auto;
	height: 90vh;
	float: left;
	background-color: #22d;
	flex:6;

}

#item {
	min-height: 150px;
	min-width: 150px;
	margin: 10px;
	background-color: yellow;
	border: 1px solid red;
	border-radius: 10px;
}

#item:hover{

	background-color: #468;
}

.checkbox{

	margin: 10px;
	height: 20px;
	width: 20px;
}




/******* ADD ITEM ********/

h1#backStoreHeading{

	text-align: center;
	margin-bottom: 20px;



}

form.addItem{


	flex-wrap: wrap;
	background-color: #aaa;

	min-width: 20%;
	max-width: 240px;
	overflow: auto;


	margin: auto;
	margin-top: 2%;
	padding: 2%;

	border: 2px solid red;
	border-radius: 10px;
}

input{
	float: right;
}


/*NAVIGATION*/

#heading{
	width: 60%;
	text-align: center;
	margin:auto;
}




.topRow {
	display: flex;
	flex-direction: row;
	background-color: purple;
	min-height: 7vw;

}

#menu{
	display: flex;
	margin-right: 0px;
	width: 40%;
	min-width: 360px;
}



.menuItem, .dropDown{	
	width: 34%;
}

.menuItem:hover {background-color: #3e8e41;}
.dropDown:hover {background-color: #3e8e41;}

.dropDown, .menuItem {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}


.dropDownContent {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  overflow: visible;

}

.dropDownContent a {
  color: black;
  padding: 12px 16px;
  display: block;
}

a, a:hover{
	text-decoration: none;
	color: white;

}

.itemGroup{
	background-color: red;
	margin-left: -16px;
}

.dropDown:hover .dropDownContent {display: block;}

.dropDownContent a:hover {background-color: #ddd;}

.dropDown:hover  {background-color: #3e8e41;}
