| body { |
| font-family: Arial, sans-serif; |
| background-color: #f0f0f0; |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| height: 100vh; |
| margin: 0; |
| } |
|
|
| .game-container { |
| text-align: center; |
| background-color: #fff; |
| padding: 20px; |
| border-radius: 10px; |
| box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); |
| } |
|
|
| h1 { |
| color: #333; |
| } |
|
|
| .color-options { |
| display: flex; |
| justify-content: space-around; |
| margin: 20px 0; |
| } |
|
|
| .color-box { |
| width: 100px; |
| height: 100px; |
| cursor: pointer; |
| border-radius: 5px; |
| } |
|
|
| button { |
| padding: 10px 20px; |
| font-size: 16px; |
| background-color: #4caf50; |
| color: white; |
| border: none; |
| border-radius: 5px; |
| cursor: pointer; |
| } |
|
|
| button:hover { |
| background-color: #45a049; |
| } |
|
|
| p { |
| font-size: 18px; |
| } |