footer.css 712 B

12345678910111213141516171819202122232425262728293031323334353637
  1. footer {
  2. margin-top: 90px;
  3. margin-bottom: 150px;
  4. display: flex;
  5. justify-content: center;
  6. align-items: center;
  7. gap: 80px;
  8. flex-wrap: wrap;
  9. }
  10. footer div p:first-child {
  11. margin-bottom: 20px;
  12. font-weight: normal;
  13. font-size: 16px;
  14. text-align: center;
  15. }
  16. footer div div {
  17. display: flex;
  18. flex-direction: column;
  19. }
  20. footer div div a {
  21. color: #000;
  22. text-align: center;
  23. font-size: 36px;
  24. text-decoration: none;
  25. transition: all 0.3s ease;
  26. text-underline-offset: 3px;
  27. }
  28. footer div div a:hover {
  29. text-underline-offset: 8px;
  30. text-decoration: underline;
  31. }
  32. @media screen and (max-width: 750px) {
  33. footer div a {
  34. font-size: 24px !important;
  35. }
  36. }/*# sourceMappingURL=footer.css.map */