/* This is a style.css file for the nix--wsk-tv2p-8vt project. It contains the CSS styles required for the application. */ body { margin: 0; font-family: Arial, sans-serif; } header { background-color: #333; color: white; padding: 1rem; text-align: center; } .navbar { display: flex; justify-content: space-between; align-items: center; padding: 0.5rem 1rem; } .navbar a { color: white; margin-right: 1rem; text-decoration: none; } .navbar a:hover { text-decoration: underline; } main { padding: 1rem; } .content { max-width: 800px; margin: auto; background-color: #f9f9f9; padding: 1rem; border-radius: 4px; } footer { background-color: #333; color: white; padding: 1rem; text-align: center; margin-top: 1rem; } /* Responsive design */ @media (max-width: 600px) { .navbar { flex-direction: column; } }