body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

header {
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
}

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

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

nav ul li a:hover {
    text-decoration: underline;
}

main {
    display: flex;
    max-width: 900px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.blog-post {
    flex: 2;
    margin-right: 20px;
}

.blog-post h2 {
    margin-bottom: 5px;
    color: #333;
}

.date {
    font-size: 0.9em;
    color: gray;
    margin-bottom: 15px;
}

aside {
    flex: 1;
    background: #eee;
    padding: 10px;
    border-radius: 5px;
}

aside img {
    max-width: 100%;
    border-radius: 3px;
    margin-top: 10px;
}

aside ul {
    padding-left: 20px;
}

aside li {
    margin-bottom: 8px;
}

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

/* Button styling that matches the color scheme */
.meal-link {
    display: inline-block;
    padding: 8px 16px;
    margin: 5px 5px 5px 0;
    background-color: #555;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    border: none;
    transition: background-color 0.3s;
}

.meal-link:hover {
    background-color: #333;
    cursor: pointer;
}

/* Styling for meal sections */
.meal {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.meal h3 {
    color: #444;
    margin-bottom: 5px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    main {
        flex-direction: column;
    }
    
    .blog-post {
        margin-right: 0;
        margin-bottom: 20px;
    }
}