home.css 494 B

12345678910111213141516171819202122232425262728293031
  1. section {
  2. max-width: 600px;
  3. margin: 3rem auto;
  4. padding: 1.5rem 2rem;
  5. border-radius: 10px;
  6. font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  7. color: #333;
  8. }
  9. h3 {
  10. font-size: 1.8rem;
  11. margin-bottom: 1rem;
  12. color: #2c3e50;
  13. }
  14. p {
  15. font-size: 1.1rem;
  16. line-height: 1.6;
  17. margin-bottom: 1rem;
  18. }
  19. a {
  20. color: #007bff;
  21. text-decoration: none;
  22. font-weight: 600;
  23. }
  24. a:hover, a:focus {
  25. text-decoration: underline;
  26. color: #0056b3;
  27. }