body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.score-container {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.button-container {
    margin-top: 10px;
}

button {
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    background: #ffcc00;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
    background: #ffdd44;
}
