@charset "UTF-8";
/* Author: Adrianna Sofea
	Date: 06 October 2023
*/

/* Element Selector */ 

h1 {color: darkkhaki;
	text-align: center;
}
p {color: darkslategray}
li {color: darkslategray}
label {color: darkkhaki}

/* Class Selctor */

.nav-link {
	text-decoration:none;
	color: darkkhaki;	
	
 }
.navi {
	text-align: center;
}

/* ID Selector */

#About-Me {
	font-style: oblique; 
	color: darkkhaki
}
#Strawberry-Lemonade-Angel-Pie-Recipe {
	font-style: bold;
	color:darkkhaki 
}
#Ingredients {
	font-style: normal;
	color:darkolivegreen;
}
#For-the-meringue-shell {
	font-style: oblique;
	color: darkkhaki
}
#For-the-lemon-filling-and-whipped-cream {
	font-style: oblique;
	color: darkkhaki;
}
#For-the-macerated-strawberries-and-assembly- {
	font-style: oblique;
	color:darkkhaki
}

/* Descendant Selector */ 

header ul li {
	display: inline;
	margin-right: 20px;
}
#Step-by-step {
	font-style: normal;
	color: darkolivegreen
}
#step-1 {
	font-style: italic;
	color: darkkhaki
}
#step-2 {
	font-style: italic;
	color: darkkhaki
}
#step-3 {
	font-style: italic;
	color: darkkhaki
}
#step-4 {
	font-style:italic;
	color: darkkhaki
}
#step-5 {
	font-style: italic;
	color: darkkhaki
}
#step-6 {
	font-style:italic;
	color:darkkhaki
}
#contact-me {
	font-style: normal;
	color: darkkhaki
}

/* Pseudo Class Selector */
a:hover { 
	text-decoration: underline;
	color: darkolivegreen
}

body {
	background-color: beige;
}








