body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.game-container {
    text-align: center;
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

.game-info {
    margin-bottom: 20px;
}

.score {
    font-size: 1.2em;
    margin-bottom: 10px;
    margin-top: 10px;
}

#start-pause {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}

#start-pause:hover {
    background-color: #45a049;
}

.game-area {
    display: flex;
    justify-content: center;
    gap: 20px;
}

#game-board {
    background-color: #222;
    border: 2px solid #333;
}

.next-piece {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#next-piece {
    background-color: #222;
    border: 2px solid #333;
}