body {
    background-color: #333;
    color: #eee;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    height: 100vh;
}

h1 {
    color: #6eff3e;
}

.skor-board {
    display: flex;
    justify-content: space-between;
    width: 400px;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

#game-canvas {
    background-color: #000;
    border: 3px solid #6eff3e;
}

#tombol-mulai-ulang {
    margin-top: 20px;
    padding: 10px 25px;
    font-size: 1rem;
    font-family: 'Courier New', Courier, monospace;
    background-color: #6eff3e;
    color: #000;
    border: none;
    cursor: pointer;
    display: none; /* Sembunyikan tombol pada awalnya */
}

#tombol-mulai-ulang:hover {
    background-color: #a1ff86;
}