styles.css 565 B

123456789101112131415161718192021222324252627282930
  1. /* Base styles */
  2. html, body {
  3. height: 100%; /* Ensure the body and html elements fill the viewport height */
  4. margin: 0; /* Remove default margin */
  5. display: flex;
  6. flex-direction: column;
  7. }
  8. body {
  9. font-family: Arial, sans-serif;
  10. }
  11. header {
  12. background-color: #4CAF50;
  13. color: white;
  14. padding: 1em;
  15. text-align: center;
  16. }
  17. main {
  18. flex: 1; /* Make the main content area grow to fill the available space */
  19. padding: 1em;
  20. }
  21. footer {
  22. background-color: #333;
  23. color: white;
  24. text-align: center;
  25. padding: 1em;
  26. }