#canvas{
    box-shadow:  0 0 20px black;
}

 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; 
}


#score, #best {
    position: fixed;
    top: 10px;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 20px;
}

#score { left: 30px; }
#best { right: 30px; }


#play {
    position: fixed;
    top: 10px; 
    left: 50%;
   color: white;
    padding: 5px 15px;
    border-radius: 8px;
    font-size: 16px;
}


#pauseBtn {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
}
