body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9; /* Light background */
    color: #333; /* Dark text */
}

header {
    background-color: #007bff; /* Blue header */
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 5px solid #0056b3;
}

header h1 {
    margin-bottom: 5px;
}

main {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
}

.article {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.article h2 {
    color: #007bff;
}

.article .meta {
    font-size: 0.9em;
    color: #666;
    margin-top: -10px;
    margin-bottom: 15px;
}

.article a {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.article a:hover {
    text-decoration: underline;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}