/* Basic CSS resets -- leveling slight inconsistencies in browsers */
html, body {
	margin:0px;
	padding:0px;
	height:100%;
}

html {
		/* Standard text-settings below */
	font-size: 1em;
    line-height: 1.4em;
}



p  {

 font-size:20px;
   color:#1159ab;
}

header {
background:#2C401E;
color:#BE84BF;
border: 3px solid #5D734D;
text-align: center;
width:100%;
}


body {
	background-image: url("../img/Flower2.jpeg")  ;
	background-repeat: no-repeat;
	  background-size:cover;



}
#FM{
	
	width:100%;
	
	}

#container {

	border:10px;
                
  max-width:900px;              
  margin: auto;
	
}

nav ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  border: 1px solid gray;

  display: flex;               /* Use flexbox for horizontal layout */
  justify-content: center;     /* Center items horizontally */
  flex-wrap: wrap;             /* Allow wrapping if needed */
  gap: 10px;                   /* Add space between items */
}

nav ul.horizion li {
  /* Remove unnecessary styles */
}

nav a {
  text-decoration: none;
  display: inline-block;       /* Change from flex to inline-block */
  border: 1px solid black;
  border-radius: 8px;
  padding: 5px 10px;
  margin: 5px;
  background: #2E85F0;
  color: #06118a;
}
	}

figcaption, footer {
  font-size: 0.75em;
}
