/* * style.css * * This file contains styles for the application. */ body { margin: 0; font-family: 'Segoe UI', sans-serif; } header { background-color: #2c3e50; color: white; padding: 1rem 0; text-align: center; } section { padding: 2rem 0; } footer { background-color: #34495d; color: white; padding: 1rem 0; text-align: center; } button { background-color: #3498db; border: none; color: white; padding: 0.5rem 1rem; border-radius: 4px; cursor: pointer; } button:hover { background-color: #2980b9; } input[type="text"] { padding: 0.5rem; width: 100%; box-sizing: border-box; } input[type="submit"] { background-color: #f1c40f; color: black; border: none; cursor: pointer; } input[type="submit"]:hover { background-color: #e6c300; } /* Responsive design */ @media (max-width: 600px) { header { padding: 0.5rem 0; } button { padding: 0.3rem 0.5rem; } }