body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

main {
    flex: 1;
}

footer {
    background-color: #34495e;
    color: #fff;
    padding: 20px;
    text-align: center;
}


header {
    background-color: #3498db;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.innovations {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.left-innovation, .right-innovation {
    padding: 10px;
    background-color: #2980b9;
}



.search-section {
    text-align: center;
    margin-bottom: 20px;
}

input {
    padding: 10px;
    width: 60%;
}

button {
    padding: 10px 20px;
    background-color: #2ecc71;
    color: #fff;
    border: none;
    cursor: pointer;
}

.recipe-card {
    text-align: center;
    margin-bottom: 20px;
}

.recipe-card img {
    width: 100%;
    border-radius: 8px;
}


.footer-innovations {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.footer-innovations p {
    cursor: pointer;
}

footer img {
    width: 50px;
    height: 50px;
}

/* ... (previous code) ... */

/* ... (previous code) ... */

/* ... (previous code) ... */

.recipe-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.recipe-card {
    text-align: center;
    margin-bottom: 20px;
    width: calc(25% - 20px); /* Adjust the width and margins as needed */
    box-sizing: border-box;
}

.recipe-card img {
    width: 100%;
    height: 150px; /* Adjust the height as needed */
    object-fit: cover;
    border-radius: 8px;
}

/* ... (remaining code) ... */


/* ... (remaining code) ... */

/* ... (remaining code) ... */
