/*															*/
/* https://palettesdecouleurs.com/palette-de-couleurs-2124/ */
/*															*/			




 /* The navigation menu */
.navbar {
	overflow: 			hidden;
	background-color: 	#bdd4a3 ;
	width:				70%;
	margin:				0 auto;
	cursor: 			pointer;	
	font-family:		myMotiraRg;
	font-size: 			2rem;
}

/* Navigation links */
.navbar a {
	float: left;
	/* font-size: 16px; */
	color: white;
	text-align: center;
	padding: 10px 10px;
	text-decoration: none;
}

/* The subnavigation menu */
.subnav {
	float: left;
	overflow: hidden;
}

/* Subnav button */
.subnav .subnavbtn {
	/* font-size: 16px; */
	border: none;
	outline: none;
	color: white;
	padding: 10px 10px;
	background-color: inherit;
	font-family: inherit;
	margin: 0;
}

/* Add a red background color to navigation links on hover */
.navbar a:hover, .subnav:hover .subnavbtn {
	background-color: 	#768d68;
}

/* Style the subnav content - positioned absolute */
.subnav-content {
	display: none;
	position: absolute;
	left: auto;
	right:	auto;
	background-color: 	#bdd4a3;
	width: 70%;
	z-index: 3;
	text-shadow: 		2px 2px 4px #000000;

}

/* Style the subnav links */
.subnav-content a {
	float: left;
	color: white;
	text-decoration: none;
}

/* Add a grey background color on hover */
.subnav-content a:hover {
	background-color: #dcda65;
	color: black;
	text-shadow:   none;
}

/* When you move the mouse over the subnav container, open the subnav content */
.subnav:hover .subnav-content {
	display: block;
} 