css /* General Body Styling */ body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; margin: 0; padding: 0; background-color: #f4f6f8; color: #333; display: flex; flex-direction: column; min-height: 100vh; } /* Header Styling */ header { background-color: #0078d4; /* Microsoft blue */ color: #fff; padding: 20px 0; text-align: center; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); } header h1 { margin: 0; font-size: 2.5em; letter-spacing: 1px; } header p { margin: 5px 0 0; font-size: 1.1em; opacity: 0.9; } /* Navigation Styling */ nav { background-color: #e1e1e1; padding: 10px 0; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08); } nav ul { list-style: none; padding: 0; margin: 0; display: flex; justify-content: center; } nav ul li { margin: 0 15px; } nav ul li a { text-decoration: none; color: #0078d4; font-weight: 600; font-size: 1.1em; transition: color 0.3s ease; } nav ul li a:hover { color: #005a9e; } /* Main Content Area */ main { flex: 1; max-width: 1200px; margin: 30px auto; padding: 0 20px; width: 100%; box-sizing: border-box; } /* Post List Styling */ .posts-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; } .post-item { background-color: #fff; border-radius: 8px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; } .post-item:hover { transform: translateY(-5px); box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15); } .post-item img { width: 100%; height: 200px; object-fit: cover; } .post-content { padding: 20px; flex-grow: 1; display: flex; flex-direction: column; } .post-content h2 { margin-top: 0; margin-bottom: 10px; color: #0078d4; font-size: 1.6em; } .post-content .meta { font-size: 0.9em; color: #666; margin-bottom: 15px; } .post-content p { margin-bottom: 20px; flex-grow: 1; } .post-content .read-more { display: inline-block; margin-top: auto; padding: 10px 15px; background-color: #0078d4; color: #fff; text-decoration: none; border-radius: 4px; transition: background-color 0.3s ease; text-align: center; font-weight: 600; } .post-content .read-more:hover { background-color: #005a9e; } /* Footer Styling */ footer { background-color: #333; color: #fff; text-align: center; padding: 25px 0; margin-top: auto; /* Pushes footer to the bottom */ font-size: 0.9em; } footer p { margin: 0; } /* Responsive Adjustments */ @media (max-width: 768px) { header h1 { font-size: 2em; } nav ul { flex-wrap: wrap; justify-content: center; padding: 10px 0; } nav ul li { margin: 5px 10px; } .posts-list { grid-template-columns: 1fr; } .post-item img { height: 180px; } } @media (max-width: 480px) { header h1 { font-size: 1.7em; } nav ul li { margin: 5px 8px; } nav ul li a { font-size: 1em; } .post-content { padding: 15px; } .post-content h2 { font-size: 1.4em; } }