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 268B

123456789101112131415161718
  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. }
  5. body {
  6. font-family: 'Open Sans', 'Lato', sans-serif;
  7. }
  8. h1,
  9. h2,
  10. h3,
  11. h4,
  12. h5,
  13. h6 {
  14. font-family: 'Lato', sans-serif;
  15. }