
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #528756;
    color: #333;
    padding: 20px;

}

header {
    text-align: center;
    margin-bottom: 40px;
}

h1 {
    font-size: 2em;
    color: #333;
}

/* Menu Style */
.menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.menu-item {
    text-align: center;
    background-color: #8abb77;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 120px;
    transition: transform 0.3s ease;
}

.menu-item:hover {
    transform: scale(1.1);
}


/* Recipe Cards */
.recipe-card {
    background-color: #F1F8E9; /* Pale mint green */
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.recipe-card h2 {
    font-family: 'Georgia', serif;
    color: #388E3C; /* Rich green */
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.recipe-card p {
    font-size: 1.1rem;
    color: #555;
}


.container {
    text-align: center;
}

.container {
    text-align: center;
}

.container {
    text-align: center;
}
