/* This is a sample style.css file for demonstration purposes. It contains some basic CSS rules to style a webpage. */ 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; transition: color 0.3s ease; } nav a:hover { color: #ffcc00; } main { padding: 20px; } section { margin-bottom: 40px; } footer { background-color: #333; color: white; text-align: center; padding: 10px; }