body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #6e2f2f;
    color: #333;
}

header {
    text-align: center;
    background: url('header-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 60px;
}

header h1 {
    margin: 0;
    font-size: 4rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px #000000, 0 0 10px #0d0d0d;
    text-decoration: underline wavy ;
    text-underline-offset: 10px;
    
}

header p {
    font-size: 1.5rem;
    font-style: italic;
    text-shadow: 0 0 20px #9bf40c, 0 0 10px rgb(88, 33, 33);
}

.mood-selection {
    text-align: center;
    margin: 30px;
    padding: 20px;
    background-color: #df9595;
    border-radius: 10px;
}

.mood-selection h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.mood-selection p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-style: italic;
    color: #882130;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.mood-selection .mood-btn {
    padding: 12px 24px;
    margin: 10px;
    background-color: #cc6363;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.mood-selection .mood-btn:hover {
    transform: scale(1.1);
    background-color: silver;
    background-blend-mode: lighten;
}

.recipes {
    margin: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.recipe {
    background: url('recipe-card-bg.jpg') no-repeat center center/cover;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #fff;
    transition: transform 0.3s ease;
}

.recipe h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #ffd700;
}

.recipe p {
    font-size: 1.2rem;
}

footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 10px;
}

footer p {
    font-size: 1rem;
    font-style: italic;
}
