File size: 528 Bytes
cf29d38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
```css
body {
    overflow: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

canvas {
    display: block;
    margin: 0 auto;
    background-color: #111827;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.game-container {
    position: relative;
}

.controls {
    position: absolute;
    bottom: 20px;
    width: 100%;
    display: none;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .controls {
        display: flex;
    }
}
```