body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #282c34;
    color: white;
    font-family: Arial, sans-serif;
}

.game-container {
    text-align: center;
}

canvas {
    border: 2px solid #61dafb;
    background-color: #20232a;
}

.score, .high-score {
    margin: 10px 0;
}

button {
    padding: 10px 20px;
    background-color: #61dafb;
    border: none;
    color: black;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #21a1f1;
}