/ src / index.css
index.css
 1  body, html, #root {
 2    margin: 0;
 3    padding: 0;
 4    width: 100%;
 5    height: 100%;
 6    overflow: hidden;
 7    background-color: #000000;
 8    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
 9      'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
10      sans-serif;
11    -webkit-font-smoothing: antialiased;
12    -moz-osx-font-smoothing: grayscale;
13  }
14  
15  code {
16    font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
17      monospace;
18  }
19  
20  .App {
21    text-align: center;
22    width: 100vw;
23    height: 100vh;
24    background-color: #000000;
25    color: white;
26    overflow: hidden;
27    position: fixed;
28    top: 0;
29    left: 0;
30  }
31  
32  /* Scrollbar styles */
33  * {
34    scrollbar-width: thin;
35    scrollbar-color: #4a4a4a #000000;
36  }
37  
38  /* Works on Chrome, Edge, and Safari */
39  *::-webkit-scrollbar {
40    width: 8px;
41  }
42  
43  *::-webkit-scrollbar-track {
44    background: #000000;
45  }
46  
47  *::-webkit-scrollbar-thumb {
48    background-color: #4a4a4a;
49    border-radius: 4px;
50    border: 2px solid #000000;
51  }