
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Merriweather:wght@400;700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #fdf8f5; /* Off-white, warm */
    color: #333;
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #d4c4b4; /* Muted brown */
    margin-bottom: 2rem;
}

.header .logo {
    font-family: 'Merriweather', serif;
    font-size: 3.5rem;
    color: #8b4513; /* SaddleBrown */
    margin: 0;
}

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

.navbar {
    text-align: center;
    margin-bottom: 2rem;
}

.nav-links a {
    color: #8b4513;
    text-decoration: none;
    margin: 0 1rem;
    font-size: 1.1rem;
}

h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    color: #8b4513;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

.image-container {
    text-align: center;
    margin: 2rem 0;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border: 1px solid #ccc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #777;
}
