

.recipe-img {
    width: 350px;
    border-radius: 10px;
    display: block;
    margin-bottom: 20px;
}

#recipe-container {
    max-width: 800px;
    margin: auto;
}

#recipe-meta p {
    margin: 5px 0;
}

h2 {
    margin-top: 25px;
}
body {
    font-family: 'Georgia', serif;
  
    background: #f4efe7;
    margin: 0;
    padding: 0;
    color: #2b2b2b;
}

/* Main centered recipe container */
#recipe-container {
    max-width: 750px;
    margin: 60px auto;
    padding: 40px;
    background: #fffdf8;
    border-radius: 14px;
    box-shadow: 0px 8px 25px rgba(0,0,0,0.07);
    font-size: 40px;
}

/* Recipe title */
#recipe-title {
    text-align: center;
    font-size: 70px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1f1f1f;
    letter-spacing: -0.5px;
}

/* Recipe image */
.recipe-img {
    display: block;
    width: 75%;
    margin: 0 auto 25px auto;
    border-radius: 12px;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.12);
}

/* Meta info (Prep time, servings, etc.) */
#recipe-meta {
    width: 70%;
    margin: 0 auto 30px auto;
    font-size: 25px;
    line-height: 1.6;
    color: #444;
}

/* Section titles */
#recipe-container h2 {
    font-size: 35px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 12px;
    color: #1e1e1e;
    border-bottom: 2px solid #ddb892;
    padding-bottom: 4px;
    width: fit-content;
}

/* Ingredients list */
#recipe-ingredients {
    margin-left: 25px;
    line-height: 1.7;
    font-size: 25px;
}

/* Instructions list */
#recipe-steps {
    margin-left: 20px;
    line-height: 1.8;
    font-size: 25px;
}

#recipe-steps li {
    margin-bottom: 6px;
}
