index.css 794 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. body {
  2. margin: 0;
  3. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
  4. 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
  5. sans-serif;
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. }
  9. code {
  10. font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
  11. monospace;
  12. }
  13. :root{
  14. --salmon:#FFA07A;
  15. }
  16. *{
  17. font-family: 'Roboto', sans-serif;
  18. margin:0; padding:0;
  19. box-sizing: border-box;
  20. outline: none; border:none;
  21. text-decoration: none;
  22. text-transform: capitalize;
  23. transition:all .2s linear;
  24. }
  25. *::selection{
  26. background:var(--red);
  27. color:#fff;
  28. }
  29. html{
  30. font-size: 62.5%;
  31. overflow-x: hidden;
  32. scroll-behavior: smooth;
  33. scroll-padding-top: 6rem;
  34. }
  35. body{
  36. background:#f7f7f7;
  37. }