/* Reset some default styles */
.center-title {
    text-align: center;
}

body, h1, h2, h3, ul, li, p {
    margin: 0;
    padding: 0;
}

/* Set a dark background color and light text color for the entire page */
body {
    background-color: #333333;
    color: #f0f2f5; /* Light text color */
    font-family: Arial, sans-serif;
}

/* Header styles */
header {
    background-color: #333333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
}

/* Navigation menu styles */
nav ul {
    list-style: none;
    margin-top: 20px;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}

/* Blog posts section styles */
.container {
    background-color: #444; /* Darker container background */
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1); /* Lighter box shadow */
}

.container h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #f0f2f5; /* Light text color for headings */
}

.container ul {
    list-style: none;
}

.container li {
    margin-bottom: 20px;
}

.container h3 {
    font-size: 20px;
    color: #007BFF; /* Adjusted heading color */
}

.container p {
    font-size: 16px;
    line-height: 1.5;
    color: #f0f2f5; /* Light text color for paragraphs */
}

/* Footer styles */
footer {
    background-color: #333333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Adjust styles for links */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Blog posts section styles */
.post-container {
    background-color: #444; /* Darker container background */
    padding: 20px;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1); /* Lighter box shadow */
}

.post-container h3 {
    font-size: 20px;
    color: #f0f2f5; /* Light text color for headings */
}

.post-container p {
    font-size: 16px;
    line-height: 1.5;
    color: #f0f2f5; /* Light text color for paragraphs */
}

