File size: 1,018 Bytes
dd4c987
37d0e24
 
 
 
 
 
 
 
 
dd4c987
 
 
37d0e24
 
 
dd4c987
 
37d0e24
 
 
 
 
 
 
dd4c987
 
37d0e24
 
 
dd4c987
 
37d0e24
 
 
dd4c987
37d0e24
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
body {
    background-color: #2c3e50;
    color: #ecf0f1;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

h1 {
    font-size: 3em;
    color: #e74c3c;
    text-shadow: 2px 2px 4px #000;
}

.game-container {
    display: flex;
    align-items: flex-start;
    border: 3px solid #ecf0f1;
    padding: 20px;
    border-radius: 10px;
    background-color: #34495e;
}

canvas {
    border: 2px solid #95a5a6;
    background-color: #000;
}

.game-info {
    margin-left: 20px;
    width: 150px;
}

.game-info h2 {
    margin-top: 0;
    color: #f1c40f;
}

#score {
    font-size: 2em;
    font-weight: bold;
}

#start-button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    transition: background-color 0.3s;
}

#start-button:hover {
    background-color: #c0392b;
}