File size: 3,044 Bytes
02274f2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
 .wrestler { display: flex; flex-direction: column; align-items: center; padding: 10px; margin: 10px; background-color: #ffc107; border-radius: 10px; cursor: pointer; }

.wrestler h3 { font-size: 18px; font-weight: bold; color: #333; }

.wrestler button { background-color: #4CAF50; border: none; border-radius: 10px; color: #fff; cursor: pointer; padding: 10px 20px; font-size: 16px; margin: 10px; }

.wrestler button:hover { background-color: #45a049; }

.wrestler button:active { background-color: #3e8e41; }

.wrestler button:focus { outline: none; }

.game-container { display: flex; flex-direction: column; align-items: center; padding: 20px; margin: 20px; background-color: #f7f7f7; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }

.game-container h1 { font-size: 24px; font-weight: bold; color: #333; margin-bottom: 10px; }

.game-container p { font-size: 16px; color: #666; margin-bottom: 20px; }

.game-container button { background-color: #4CAF50; border: none; border-radius: 10px; color: #fff; cursor: pointer; padding: 10px 20px; font-size: 16px; margin: 10px; }

.game-container button:hover { background-color: #45a049; }

.game-container button:active { background-color: #3e8e41; }

.game-container button:focus { outline: none; }

.game-board { display: flex; flex-direction: column; align-items: center; padding: 20px; margin: 20px; background-color: #f7f7f7; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }

.game-board h2 { font-size: 18px; font-weight: bold; color: #333; margin-bottom: 10px; }

.game-board #gameboard { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; margin: 20px; background-color: #f7f7f7; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }

.game-board #scoreboard { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; margin: 20px; background-color: #f7f7f7; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }

.game-board #countdown { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; margin: 20px; background-color: #f7f7f7; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }

.game-board #moves { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; margin: 20px; background-color: #f7f7f7; border-radius: 10px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }

.game-board #moves h2 { font-size: 18px; font-weight: bold; color: #333; margin-bottom: 10px; }

.game-board #moves ul { list-style: none; margin: 0; padding: 0; }

.game-board #moves li { margin-bottom: 5px; }

.game-board #moves button { background-color: #4CAF50; border: none; border-radius: 10px; color: #fff; cursor: pointer; padding: 10px 20px; font-size: 16px; margin: 10px; }

.game-board #moves button:hover { background-color: #45a049; }

.game-board #moves button:active { background-color: #3e8e41; }

.game-board #moves button:focus { outline: none; }