/* * styles.css * * This is a CSS stylesheet for the project. * It contains all the styling rules for the application. */ /* Reset some default browser styles */ * { margin: 0; padding: 0; } body { font-family: Arial, sans-serif; line-height: 1.6; color: #333; } header { background-color: #4a90e2; color: white; padding: 15px 0; text-align: center; } nav { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; } nav a { color: white; text-decoration: none; transition: color 0.3s ease; } nav a:hover { color: #fff; border-bottom: 2px solid #fff; } .main-content { max-width: 800px; margin: auto; padding: 20px; background-color: #f9f9f9; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } h2 { color: #4a90e2; } ul { list-style-type: none; padding: 0; } ul li { margin-bottom: 10px; } ul li:nth-child(even) { background-color: #f2f2f2; } footer { margin-top: 40px; font-size: 0.9em; color: #888; text-align: center; clear: both; }