Changed around line 1
+ :root {
+ --primary-color: #2d3436;
+ --accent-color: #6c5ce7;
+ --background-color: #ffffff;
+ --text-color: #2d3436;
+ --max-width: 800px;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ }
+
+ header {
+ background-color: var(--background-color);
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ position: sticky;
+ top: 0;
+ z-index: 100;
+ }
+
+ nav {
+ max-width: var(--max-width);
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--primary-color);
+ text-decoration: none;
+ transition: color 0.3s ease;
+ }
+
+ .logo:hover {
+ color: var(--accent-color);
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text-color);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .nav-links a.active {
+ color: var(--accent-color);
+ font-weight: 600;
+ }
+
+ .container {
+ max-width: var(--max-width);
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .post {
+ background: var(--background-color);
+ border-radius: 8px;
+ overflow: hidden;
+ margin-bottom: 2rem;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .post:hover {
+ transform: translateY(-5px);
+ }
+
+ .post-image {
+ width: 100%;
+ height: 400px;
+ object-fit: cover;
+ }
+
+ .post-content {
+ padding: 1.5rem;
+ }
+
+ .post h2 {
+ font-size: 1.5rem;
+ margin-bottom: 0.5rem;
+ color: var(--primary-color);
+ }
+
+ .post-meta {
+ display: flex;
+ gap: 1rem;
+ color: #666;
+ font-size: 0.9rem;
+ margin-bottom: 1rem;
+ }
+
+ .read-more {
+ display: inline-block;
+ margin-top: 1rem;
+ color: var(--accent-color);
+ text-decoration: none;
+ font-weight: 600;
+ transition: color 0.3s ease;
+ }
+
+ .read-more:hover {
+ color: var(--primary-color);
+ }
+
+ footer {
+ background-color: var(--primary-color);
+ color: var(--background-color);
+ padding: 2rem 0;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: var(--max-width);
+ margin: 0 auto;
+ padding: 0 1rem;
+ text-align: center;
+ }
+
+ .social-links {
+ margin-top: 1rem;
+ }
+
+ .social-links a {
+ color: var(--background-color);
+ text-decoration: none;
+ margin: 0 1rem;
+ transition: opacity 0.3s ease;
+ }
+
+ .social-links a:hover {
+ opacity: 0.8;
+ }
+
+ @media (max-width: 768px) {
+ nav {
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .nav-links {
+ display: flex;
+ flex-wrap: wrap;
+ justify-content: center;
+ gap: 1rem;
+ }
+
+ .nav-links a {
+ margin: 0;
+ }
+
+ .post-image {
+ height: 300px;
+ }
+ }