body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #D5EFDC;
    background-size: cover;
    background-position: center;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}


nav li {
    display: inline-block;
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    background-image: url(images/vegetables.jpg);
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    padding: 100px 0;
    text-shadow: 1px 0 1px #000, 
    0 1px 1px #000, 
    -1px 0 1px #000, 
    0 -1px 1px #000;
}

.about {
    margin-top: 50px;
    text-align: center;
}

.recipes {
    margin-top: 50px;
}

.recipe {
    display: flex;
    margin-bottom: 30px;
}

.recipe img {
    max-width: 400px;
    margin-right: 20px;
}

.recipe-text h3 {
    margin-top: 0;
}

.blog {
    margin-top: 50px;
}

.post {
    display: flex;
    margin-bottom: 30px;
}

.post img {
    max-width: 400px;
    margin-right: 20px;
}

.post-text h3 {
    margin-top: 0;
}

.map {
    margin-top: 50px;
    text-align: center;
}

.map iframe {
    max-width: 100%;
}

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