index.css 478 B

123456789101112131415161718192021222324252627
  1. @import './reset.css';
  2. html, body {
  3. padding: 0;
  4. margin: 0;
  5. background-color: #303030;
  6. color: #FFFFFF;
  7. font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
  8. Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  9. }
  10. #app {
  11. min-height: 100vh;
  12. display: flex;
  13. align-items: center;
  14. flex-direction: column;
  15. gap: 64px;
  16. }
  17. a {
  18. color: inherit;
  19. text-decoration: none;
  20. }
  21. * {
  22. box-sizing: border-box;
  23. }