/* * style.css * Style sheet for the Ollama application */ /* Base styles */ body { margin: 0; font-family: Arial, sans-serif; } header { background-color: #333; color: white; padding: 15px 0; text-align: center; } nav { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 10px 0; } nav a { color: white; text-decoration: none; transition: color 0.3s ease; } nav a:hover { color: #ffcc00; } .content { padding: 20px; } footer { background-color: #222; color: white; text-align: center; padding: 10px 0; marginTop: 40px; } /* Responsive design */ @media (max-width: 600px) { nav a { fontSize: 1em; } }