index.css 504 B

12345678910111213141516171819202122232425262728293031323334
  1. @import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600&display=swap");
  2. *,
  3. *::before,
  4. *::after {
  5. padding: 0;
  6. margin: 0;
  7. box-sizing: border-box;
  8. border: none;
  9. }
  10. html {
  11. font-family: "Quicksand", sans-serif;
  12. font-size: 17px;
  13. min-height: 100%;
  14. }
  15. body {
  16. width: 100%;
  17. height: calc(100%);
  18. font-family: inherit;
  19. font-size: inherit;
  20. line-height: 1.15;
  21. }
  22. ul {
  23. list-style-type: none;
  24. list-style: none;
  25. }
  26. a {
  27. text-decoration: none;
  28. color: inherit;
  29. }