/* Basic styling and layout */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
    color: #9ccacd;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #ffffff;
    *padding: 5px;*
    /*border-bottom: 1px solid #ddd;*/
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3em;
    color: #222;
    margin: 0;
}

header p {
    font-size: 1.2em;
    color: #666;
}

main {
    padding: 20px;
}

.blog-post {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-title {
    font-family: 'Playfair Display', serif;
    color: #1a1a1a;
    font-size: 2em;
    margin-top: 0;
}

.post-meta {
    font-size: 0.9em;
    color: #888;
    margin-bottom: 15px;
}

.post-meta .post-author {
    font-weight: bold;
}

.read-more {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.read-more:hover {
    text-decoration: underline;
}

.image-right {
  display: flex;
  justify-content: right;
}

.image-right img {
  width: 500px;
  max-width: 100%;
  height: auto;
}

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