Chronos234 commited on
Commit
fdc68ba
·
verified ·
1 Parent(s): fa24e77

Update styles.css

Browse files
Files changed (1) hide show
  1. styles.css +15 -9
styles.css CHANGED
@@ -1,17 +1,23 @@
1
  * {
2
- margin: 0;
3
- padding: 0;
4
- box-sizing: border-box;
5
  }
6
 
7
  body {
8
- background-color: #000;
9
- display: flex;
10
- justify-content: center;
11
- align-items: center;
12
- height: 100vh;
 
 
 
 
 
13
  }
14
 
15
  canvas {
16
- border: 2px solid white;
 
17
  }
 
1
  * {
2
+ margin: 0;
3
+ padding: 0;
4
+ box-sizing: border-box;
5
  }
6
 
7
  body {
8
+ display: flex;
9
+ justify-content: center;
10
+ align-items: center;
11
+ height: 100vh;
12
+ background: #000;
13
+ color: white;
14
+ }
15
+
16
+ #game-container {
17
+ text-align: center;
18
  }
19
 
20
  canvas {
21
+ border: 2px solid white;
22
+ background: #111;
23
  }