footer.css 662 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. footer {
  2. background-color: #333;
  3. color: #fff;
  4. margin-top: 20px;
  5. }
  6. .footer-content {
  7. display: flex;
  8. justify-content: space-around;
  9. flex-wrap: wrap;
  10. margin: 0 auto;
  11. max-width: 1200px;
  12. }
  13. .footer-section {
  14. flex: 1;
  15. min-width: 100px;
  16. margin: 10px;
  17. }
  18. .footer-section h3 {
  19. margin-bottom: 10px;
  20. font-size: 1.2em;
  21. }
  22. .footer-section p, .footer-section ul {
  23. margin: 5px 0;
  24. }
  25. .footer-section ul {
  26. list-style: none;
  27. padding: 0;
  28. }
  29. .footer-section a {
  30. color: #fff;
  31. text-decoration: none;
  32. }
  33. .footer-section a:hover {
  34. text-decoration: underline;
  35. }
  36. .footer-bottom {
  37. text-align: center;
  38. padding: 10px;
  39. background-color: #222;
  40. }