/* * styles.css * * This file contains the CSS styles for the application. * It includes global styles and styles specific to different components. */ body { margin: 0; font-family: 'Segoe UI', Tahoma, Geneva, sans-serif; background-color: #f5f5f5; } header { background-color: #3498db; color: white; padding: 20px 0; text-align: center; } .header-title { font-size: 2.5rem; margin-bottom: 10px; } nav { display: flex; justify-content: space-between; align-items: center; padding: 10px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.1); } nav a { margin-right: 20px; color: #ffffff; text-decoration: none; transition: color 0.3s ease; } nav a:hover { color: #fff; text-decoration: underline; } .container { max-width: 1200px; margin: auto; padding: 20px; background-color: white; box-shadow: 0 2px 5px rgba(0,0,0,0.1); } .section { margin-bottom: 40px; } .card { background-color: #ffffff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); transition: transform 0.3s ease; } .card:hover { transform: translateY(-5px); } footer { text-align: center; padding: 20px; color: #777; font-size: 0.9em; background-color: #e0e0e0; } @media (max-width: 768px) { .container { padding: 15px; } }