body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-image: url(5676696.jpg);
}

h1 {
    margin-top: 20px;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    width: 80%;
    margin: 20px auto;
}

.image-section {
    flex: 1;
    margin-right: 20px;
}

.image-section img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
}

.content {
    flex: 2;
    text-align: justify;
}

.ingredients, .instructions {
    margin-top: 30px;
    text-align: justify;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #6f8d03;
    color: white;
    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #f4ffa0;
}