@charset "utf-8";
/* CSS Document */

body {
    font-family: 'Mukta', sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.recipe-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 700px;
    padding: 20px;
}

.header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.recipe-image {
    width: 200px;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

.ingredients-image {
    float: right;
    width: 200px;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

.oven-image {
    float: right;
    width: 200px;
    height: auto;
    border-radius: 10px;
    margin-right: 20px;
}

.recipe-title {
    color: #333;
    font-size: 2em;
}

.description {
    margin-bottom: 20px;
    font-size: 1.2em;
    color: #555;
}

.ingredients {
    margin-top: 20px;
}

.ingredients h2 {
    color: #e91e63;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.ingredient-columns {
    display: flex;
    justify-content: space-between;
}

.ingredient-list {
    list-style-type: none;
    padding-left: 0;
    width: 45%;
}

.ingredient-list li {
    background: #d2f7f5;
    margin-bottom: 5px;
    padding: 10px;
    border-radius: 5px;
}

#instructions {
    margin-top: 20px;
}

#instructions h2 {
    color: #e91e63;
    font-size: 1.5em;
    margin-bottom: 10px;
}

#instructions ol {
    padding-left: 20px;
}

#instructions ol li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.servings {
    margin-top: 20px;
    text-align: center;
    font-size: 1.2em;
    color: #555;
}


