html, body {
	margin: 0;
	padding: 0;
}
#title{
	font-family: 'Open Sans', sans-serif;
	font-size: 50px;
	color: white;
	font-weight: bold;
	text-decoration: underline;
	display: flex;
	flex-direction: center;
	justify-content: center;
	align-items: center;
	border: auto solid #D789BB;
	background-color: #D789BB;
}
#menu{
	font-family: 'Open Sans', sans-serif;
}
.category {
	font-weight: bold;
}
.foodmenu{
	display: flex;
	flex-direction: row;
	vertical-align: top;
	justify-content: center;
	align-items: center;
}
.drinks{
	display: flex;
	flex-direction: row;
	vertical-align: bottom;
	justify-content: center;
	align-items: center;
}
.bigfoodmenu{
	height: 600px;
	width: 400px;
	border: 2px solid black;
	border-radius: 25px;
	padding: 10px;
	margin: 10px;
}
.smallfoodmenu{
	height: 600px;
	width: 400px;
	border: 2px solid black;
	border-radius: 25px;
	padding: 10px;
	margin: 10px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.foodmenu{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.drinkmenu1{
	height: 500px;
	width: 400px;
	border: 2px solid black;
	border-radius: 25px;
	padding: 10px;
	margin: 10px;
}
.drinkmenu2{
	height: 500px;
	width: 400px;
	border: 2px solid black;
	border-radius: 25px;
	padding: 10px;
	margin: 10px;
}
.order-button {
	color: white;
	font-size: 20px;
  border-radius: 20px;
  background: #D789BB;
  width: 120px;
  height: 30px;
	padding: 5px;
	text-decoration: underline white;
	margin-left: 120px;
	text-align: center;
	margin-top: 90px;
}
.order-button: hover {
	cursor: pointer;
}
#navbar {
	font-family: 'Open Sans', sans-serif;
	color: white;
	background-color: #D789BB;
	cursor: pointer;
	text-decoration: none;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
}
a{
	color: white;
}
a:visited {
	text-decoration: none;
	color: white;
}
a:hover {
	text-decoration: none;
	color: black;
}
.navbar-item1{
	margin-left: 20px;
	margin-right: 20px;
}
.navbar-item2{
	margin-left: 20px;
	margin-right: 20px;
}
.navbar-item3{
	margin-left: 20px;
	margin-right: 20px;
	font-weight: bold;
	text-decoration: underline white;
}
.navbar-item4 {
	margin-left: 20px;
	margin-right: 50px;
}
.navbar-item3 :hover {
	color: black;
	text-decoration: underline black;
}
