body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to right, rgb(125, 30, 213), rgb(83, 93, 203), rgb(67, 233, 133));
    font-family: Arial, sans-serif;
}

canvas {
    border: 2px solid black;
    margin-top: 60px;
    box-shadow: 0 0 20px black;
}

#score, #best {
    position: fixed;
    top: 10px;
    color: white;
    padding: 5px 10px;
    font-size: 20px;
}

#score { left: 30px; }
#best { right: 30px; }

#play {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
}

#pauseBtn {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}
