#fo{
	display:flex;
	flex-flow:row;
	align-items:center;
	justify-content:space-evenly;
	background-color:rgba(230,208,189,0.6);
	height:50px;
	padding-left:20px;
	border-radius:3px 8px 3px 8px;

}
#menu{
	height:30px;
	width:200px;
	box-shadow:2px 2px 10px 3px black;
	background-color:rgb(250,250,225);
	color:rgb(120,80,45);
	text-align:center;
	cursor:pointer;
	padding:3px;
	border-radius:3px 8px 3px 8px;
font-weight:bold;
}
#menu:hover{
	background-color:rgb(120,80,45);
	color:rgb(250,250,225);
	box-shadow:2px 2px 10px 3px rgb(250,250,225);
	transition:0.5s;
}

a{
text-decoration:none;
color:rgb(120,80,45);
}
a:hover{
color:rgb(250,250,225);
transition:0.5s
}
