@charset "UTF-8";
/* CSS Document */

* head{
    font-size: 1.5em;
    color: #E885A9;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

body {
	font-family: "Playfair Display", serif;
	margin: 20px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 390vh;
}

.recipe-card {
    background-color: #FBBCE4;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.recipe-title {
    font-size: 2em;
    margin-bottom: 10px;
    text-align: center;
    color: #DC6076;
}

.recipe-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

h2 {
    font-size: 1.5em;
    color: #DC6076;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.ingredient-list{
    list-style-type: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.ingredient-list li{
    padding: 5px;
    border-bottom: 0px;
    color: #F06AA6;
}

.notes-list{
    list-style-type: none;
    padding-right: 50%;
    margin:0px;	
}

.notes-list li{
    padding: 5px;
    border-bottom: 0px;
    color: #F06AA6;
}

#instructions {
    list-style-type: none;
    padding:10px;
    margin: 20px 0;
}

#instructions li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: #F06AA6;
}

#instructions li {
    padding-left: 20px;
    text-indent: -20px;
}

#instructions li:before {
    content: counter(step);
    counter-increment: step;
    width: 25px;
    display: inline-block;
    text-align: center;
    background-color:antiquewhite;
    color:antiquewhite;
    border-radius: 30%;
    margin-right: 10px;
}

.section {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}
.ingredient-list, .notes-list {
	width: 96%;
	border: 1px solid #ccc;
	padding: 10px;
	border-radius: 4px;
	background-color: #fafafa;
}

ul, ol {
	padding-left: 20px;
}

body {
	font-family: "Playfair Display", serif;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	background-color:antiquewhite;
}

.container {
	width: 400px;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: 10px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	padding: 30px;
	text-align: center;
}

.container h2 {
	font-size: 22px;
	margin-bottom: 10px;
}

.container p {
	font-size: 15px;
	margin-bottom: 10px;
	color: #555;
}

.loves {
	margin-bottom: 15px;
}

.loves span {
	font-size: 25px;
	cursor: pointer;
	color:#C47F7F;
}

.loves span:hover,

.loves span:hover ~ span,

.loves span.selected {
	color: #A70000;
}

textarea {
	font-size: 13px;
	width: 100%;
	height: 30px;
	border: 1px solid #ccc;
	border-radius: 5px;
	margin-bottom: 20px;
	resize: none;
	text-align: center;
}

.btn {
	background-color:antiquewhite;
	color: #F06AA6;
	border: none;
	border-radius: 4px;
	padding: 10px 20px;
	cursor: pointer;
	font-size: 14px;
}

.btn:hover {
	background-color:#E9C187;
}
