Changed around line 1
+ body {
+ font-family: 'Arial', sans-serif;
+ line-height: 1.6;
+ margin: 0;
+ padding: 0;
+ background-color: #f4f4f4;
+ color: #333;
+ }
+
+ header {
+ background: #282c34;
+ color: #fff;
+ padding: 2rem 0;
+ 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;
+ margin-bottom: 1rem;
+ }
+
+ nav a {
+ color: #61dafb;
+ text-decoration: none;
+ margin: 0 1rem;
+ font-size: 1.1rem;
+ }
+
+ nav a:hover {
+ text-decoration: underline;
+ }
+
+ main {
+ padding: 2rem;
+ }
+
+ .featured-post, .recent-posts {
+ margin-bottom: 2rem;
+ }
+
+ .featured-post h2, .recent-posts h2 {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ article {
+ background: #fff;
+ padding: 1.5rem;
+ margin-bottom: 1rem;
+ border-radius: 8px;
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+ }
+
+ article h3 {
+ margin: 0 0 1rem;
+ font-size: 1.5rem;
+ }
+
+ article p {
+ margin: 0 0 1rem;
+ }
+
+ article a {
+ color: #61dafb;
+ text-decoration: none;
+ }
+
+ article a:hover {
+ text-decoration: underline;
+ }
+
+ footer {
+ background: #282c34;
+ color: #fff;
+ text-align: center;
+ padding: 1rem 0;
+ }
+
+ footer p {
+ margin: 0;
+ }
+
+ footer nav {
+ margin-top: 0.5rem;
+ }
+
+ footer nav a {
+ color: #61dafb;
+ text-decoration: none;
+ margin: 0 1rem;
+ }
+
+ footer nav a:hover {
+ text-decoration: underline;
+ }
+
+ @media (max-width: 768px) {
+ header h1 {
+ font-size: 2rem;
+ }
+
+ header p {
+ font-size: 1rem;
+ }
+
+ nav a {
+ font-size: 1rem;
+ }
+
+ main {
+ padding: 1rem;
+ }
+
+ .featured-post h2, .recent-posts h2 {
+ font-size: 1.5rem;
+ }
+
+ article h3 {
+ font-size: 1.2rem;
+ }
+ }