body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #D1EAEB;
}

.container {
    background-color: #F8F6F0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    color: #333;
    text-align: center;
    border-bottom: 3px solid #D1EAEB;
    padding-bottom: 10px;
    font-family: "Times New Roman", Times, serif;
}

h2 {
    color: #555;
    margin-top: 30px;
}

h3 {
    color: #666;
    margin-top: 25px;
}

p {
    color: #666;
    margin-bottom: 15px;
}

a {
    color: #FFA500; /* Orange for unvisited links */
    text-decoration: none;
}

a:visited {
    color: #87CEEB; /* Light blue for visited/clicked links */
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

.back-link {
    margin-bottom: 20px;
}

.date {
    text-align: center;
    color: #888;
    font-style: italic;
    margin-bottom: 30px;
}

.content {
    margin: 30px 0;
}

.footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #888;
}