index.css 728 B

123456789101112131415161718192021222324252627282930313233
  1. @import url('https://fonts.googleapis.com/css2?family=Knewave&family=Pinyon+Script&display=swap');
  2. .title-regular {
  3. font-family: "Pinyon Script", cursive;
  4. font-weight: 400;
  5. font-style: normal;
  6. }
  7. .body-regular {
  8. font-family: "Knewave", system-ui;
  9. font-weight: 400;
  10. font-style: normal;
  11. }
  12. :root {
  13. --accent-color: rgb(255, 0, 234);
  14. --background-color: #0e0e0e;
  15. --secondary-background-color: #363636;
  16. --text-color: white;
  17. --inverted-text-color: black;
  18. --mobile-width: 768px;
  19. font-family: "Knewave", 'Times New Roman', Times, serif;
  20. color-scheme: light dark;
  21. color: var(--text-color);
  22. background-color: var(--background-color);
  23. width: 100vw;
  24. height: 100vh;
  25. margin: 0;
  26. overflow: hidden;
  27. }