body {
    font-family: 'Open Sans', sans-serif;
    background-image: url('images/image3.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.header-img {
    width: 50%;
    border-radius: 10px;
}

.header-text {
    padding-left: 20px;
}

.header-text h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.header-text p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #666;
}

.recipe-button {
    display: inline-block;
    background: black;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.recipe-button:hover {
    background: #444;
}

.content {
    padding: 20px 0;
}

.ingredients {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.ingredients-text {
    flex: 1;
}

.ingredients h2, .instructions h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.ingredients ul {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
}

.ingredients ul li {
    margin-bottom: 10px;
}

.content-img {
    width: 40%;
    border-radius: 10px;
}

.instructions ol {
    font-size: 1.1em;
    line-height: 1.8;
    color: #333;
}

.instructions ol li {
    margin-bottom: 10px;
}