/* * styles.css * * This file contains the CSS styles for the application. */ body { margin: 0; font-family: Arial, sans-serif; } header { background-color: #333; color: white; padding: 20px; text-align: center; } nav { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; } nav a { color: white; text-decoration: none; margin-right: 20px; } nav a:hover { text-decoration: underline; } main { padding: 20px; } footer { background-color: #222; color: white; padding: 15px; text-align: center; clear: both; }