html,body {
	width: 100;
	font-size: 12pt;
	font-family: Georgia, sans-serif;
	background-color: #FFF2F3;
	color: #573B24;
}
img {
  border: 2px solid #573B24;
  border-radius: 4px;
  padding: 5px;
  
}
header {
	height:40px;
	background-color: #DBADB4;
	color: #573B24;
	padding: 15px 0;
	position: sticky;
	top: 0;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
}
header h1{
  font-size:20pt;
  margin-right : 10px;
  margin-left: 10px;
  text-align: center;
  display:inline-block;

}
header nav {
	display: inline-block ;
	vertical-align: top;
	height: 100%;
	line-height: 40px;
	front-size:30px;
}
 header nav ul{
 	margin: 0;
 	padding: 0;
 	list-style-type: none;
 	height: 100%;
 }
header nav ul li  {
	padding: 19px ;
	height: 100%;
	display: inline-block ;
	 margin-right : 10px;
  margin-left: 10px;
	 width: 150px;
	 justify-content: center;
  align-items: center;
}
header nav ul li  a{
	display: block;
	width: 100%;
	height: 100%;
	line-height: 40px;
	text-decoration:none;
	color: #573B24;

}
header nav ul li  a:hover {
	color: #7A324F;
}
h2{

	font-size: 15 px;
	background-color: #FFF2F3 ;
	padding: 6px 15px;
	border-radius: 15px;
	text-transform: uppercase;

}
section {
	background-color: #D6C3C8;
	border: 1px solid #black;
	padding: 15px 40px;
	margin-bottom: 20px;
	box box-shadow: 0 2px 5px rgba(0, 0, 0, 1.0);
	transition: transform 0.3s ease;
}
section:hover {
	transform: scale(1.01);
}
footer {
	
	background-color: #DBADB4;
	color: #573B24;
	padding: 15px 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	flex: 1;
  height: 100%;
  margin: 0;
  
}
