/* Reset default margins and padding */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #2d2d2d;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

h1 {
    color: #e6c07b;
    margin-bottom: 1.5rem;
    text-align: center;
}

h2 {
    color: #c678dd;
    margin: 1.5rem 0 1rem 0;
}

.ingredients-list, .instructions, .prep {
    margin-bottom: 2rem;
}

ul, ol {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }
}

/*

    Example HTML template for a recipe page:

    <div class="container">
        <h1>Recipe Title</h1>
        <h2>Ingredients</h2>
        <ul class="ingredients-list">
            <li>Ingredient 1</li>
            <li>Ingredient 2</li>
            <li>Ingredient 3</li>
        </ul>
        <h2>Prep</h2>
        <ul class="prep">
            <li>Preparation step 1</li>
            <li>Preparation step 2</li>
            <li>Preparation step 3</li>
        </ul>
        <h2>Instructions</h2>
        <ol class="instructions">
            <li>Step 1</li>
            <li>Step 2</li>
            <li>Step 3</li>
        </ol>
    </div>
*/