/* * styles.css * * This file contains styles for the cach30verfl0w application. * It includes global styles and specific styles for different components. */ /* Global styles */ body { margin: 0; font-family: Arial, sans-serif; } /* Main container */ .container { padding: 20px; } /* Header style */ .header { background-color: #4CAF7C; color: white; padding: 15px; text-align: center; } /* Footer style */ .footer { background-color: #f2f2f2; color: #333; padding: 15px; text-align: center; } /* Style for the main content area */ .content { margin-top: 20px; } /* Responsive design for smaller screens */ @media (max-width: 600px) { .container { padding: 10px; } }