Next.js template
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

globals.css 281B

12345678910111213141516171819
  1. @import url('https://fonts.googleapis.com/css2?family=Lato:wght@700&family=Open+Sans:wght@400;700&display=swap');
  2. * {
  3. box-sizing: border-box;
  4. margin: 0;
  5. }
  6. body {
  7. font-family: 'Open Sans', 'Lato', sans-serif;
  8. }
  9. h1,
  10. h2,
  11. h3,
  12. h4,
  13. h5,
  14. h6 {
  15. font-family: 'Lato', sans-serif;
  16. }