File size: 519 Bytes
a398ce5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
body {
    margin: 0;
    overflow: hidden;
    background-color: black;
}

#game-area {
    position: relative;
    width: 100vw;
    height: 100vh;
}

#player {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 30px;
    background-color: green;
}

.invader {
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: red;
}

.bullet {
    position: absolute;
    width: 5px;
    height: 15px;
    background-color: yellow;
}