aboutsummaryrefslogtreecommitdiff
path: root/css/style.css
blob: db6a4abcf717e9d8ab6c9896d112f075e723796a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
* {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  width: 100vw;
}

#container {
  background-color: #D8C590;
  display: flex;
  height: 100vh;
  width: 100vw;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

canvas {
  background-color: #D8C590;
  image-rendering: pixelated;
}