body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
    color: #333;
}

.game-container {
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #2c3e50;
    margin-top: 0;
}

.game-info {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 15px 0;
    font-size: 18px;
}

button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 0 5px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #2980b9;
}

#game-canvas {
    background-color: #ecf0f1;
    border: 2px solid #bdc3c7;
    display: block;
    margin: 0 auto;
}

.instructions {
    margin-top: 15px;
    font-size: 14px;
    color: #7f8c8d;
}

.instructions p {
    margin: 5px 0;
}
