/* Reset some default styles for better control */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply the color scheme */
body {
    background-color: #f7d154; /* Yellow background */
    font-family: Arial, sans-serif;
}

header {
    background-color: #0004ff; /* Blue header */
    color: #f7d154;
    text-align: center;
    padding: 20px;
}

/* Style the main content */
main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

/* Style the recipe sections */
.recipe {
    background-color: #fff; /* White recipe card background */
    border: 1px solid #ddd;
    margin: 10px;
    padding: 20px;
    text-align: center;
    width: 45%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.recipe:hover {
    transform: scale(1.05);
}

/* Style recipe titles */
.recipe h2 {
    color: #0004ff; /* Reddish-Orange recipe title */
}

/* Style the recipe images */
.recipe img {
    max-width: 100%;
    height: auto;
}

/* Style the footer with Khanda symbols */
footer {
    text-align: center;
    background-color: #1100ff; /* Blue footer */
    color: white;
    padding: 10px;
}

/* Add Khanda symbols as background images */
footer::before, footer::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    background-image: url('khanda.png'); /* Replace 'khanda.png' with your actual Khanda image */
    background-size: contain;
    margin: 0 10px;
}
