body {
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
}

h1 {
    color: #333;
}

#game-area {
    border: 2px solid #ccc;
    padding: 20px;
    background-color: #fff;
    cursor: pointer;
    user-select: none; /* Prevent text selection on click */
}

#game-area p {
    margin: 0;
    font-size: 1.2em;
}
