Changed around line 1
+ :root {
+ --primary-color: #1a73e8;
+ --secondary-color: #202124;
+ --background-color: #ffffff;
+ --text-color: #202124;
+ --accent-color: #e8eaed;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background-color: var(--background-color);
+ margin: 0;
+ padding: 0;
+ }
+
+ header {
+ background: var(--primary-color);
+ color: white;
+ padding: 2rem;
+ text-align: center;
+ }
+
+ header h1 {
+ margin: 0;
+ font-size: 2.5rem;
+ }
+
+ header p {
+ margin: 0.5rem 0 0;
+ font-size: 1.2rem;
+ }
+
+ nav {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ margin-bottom: 1rem;
+ }
+
+ nav a {
+ color: white;
+ text-decoration: none;
+ padding: 0.5rem 1rem;
+ border-radius: 4px;
+ transition: background-color 0.3s ease;
+ }
+
+ nav a:hover {
+ background-color: rgba(255, 255, 255, 0.1);
+ }
+
+ main {
+ max-width: 800px;
+ margin: 2rem auto;
+ padding: 0 1rem;
+ }
+
+ .featured-post {
+ background: var(--accent-color);
+ padding: 2rem;
+ border-radius: 8px;
+ margin-bottom: 2rem;
+ }
+
+ .post-meta {
+ color: #5f6368;
+ font-size: 0.9rem;
+ margin: 0.5rem 0;
+ }
+
+ .read-more {
+ display: inline-block;
+ background: var(--primary-color);
+ color: white;
+ padding: 0.5rem 1rem;
+ border-radius: 4px;
+ text-decoration: none;
+ transition: background-color 0.3s ease;
+ }
+
+ .read-more:hover {
+ background-color: #1557b3;
+ }
+
+ .recent-posts article {
+ margin-bottom: 1.5rem;
+ padding-bottom: 1.5rem;
+ border-bottom: 1px solid var(--accent-color);
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--secondary-color);
+ color: white;
+ }
+
+ .social-links {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ margin-top: 1rem;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ padding: 0.5rem 1rem;
+ border-radius: 4px;
+ transition: background-color 0.3s ease;
+ }
+
+ .social-links a:hover {
+ background-color: rgba(255, 255, 255, 0.1);
+ }
+
+ @media (max-width: 600px) {
+ header h1 {
+ font-size: 2rem;
+ }
+
+ header p {
+ font-size: 1rem;
+ }
+
+ nav {
+ flex-direction: column;
+ align-items: center;
+ }
+
+ .featured-post {
+ padding: 1rem;
+ }
+ }