/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: center;
    background-color: #fdf6e3;
    /* Light background */
    color: #333;
}

header {
    background-color:#ff7043;
    color: white;
    padding: 20px;
}

h1 {
    margin: 0;
}

main {
    padding: 20px;
}

section {
    max-width: 900px;
    margin: 20px auto;
    text-align: left;
}

article {
    margin-bottom: 30px;
}

.recipe {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.recipe:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.recipe-left {
    flex: 1;
    text-align: center;
}

.recipe-left img {
    width: 100%;
    max-width: 250px;
    border-radius: 10px;
}

.recipe-left h2 {
    margin-top: 10px;
    color:#ff7043;
    /* Accent color for headings */
}

.recipe-right {
    flex: 2;
}

.recipe-right p {
    margin-bottom: 20px;
    line-height: 1.6;
}

iframe {
    border: none;
    border-radius: 10px;
}

footer {
    background-color: #333;
    color: white;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

p {
    margin: 0;
}