style.css 343 B

1234567891011121314151617181920212223
  1. @font-face {
  2. font-family: Montserrat;
  3. src: url("/fonts/Montserrat-ExtraLight.otf");
  4. font-weight: normal;
  5. }
  6. @font-face {
  7. font-family: Montserrat;
  8. src: url("/fonts/Montserrat-Regular.otf");
  9. font-weight: bold;
  10. }
  11. * {
  12. box-sizing: border-box;
  13. position: relative;
  14. }
  15. body {
  16. font-family: Montserrat;
  17. }
  18. h1,h2,h3,h4,h5 {
  19. font-weight: bold;
  20. }