html {
    background-color: rgb(34, 34, 34);
    touch-action: manipulation;
}

body {
    min-width: 1000px;
}

score {
    margin-bottom: 50px;  
    display: flex;
    justify-content: center;
}
#display {
    user-select: none; 
    -webkit-user-select: none; 
    -moz-user-select: none; 
    -ms-user-select: none;
    text-align: center;
    padding: 20px;
    width: 300px;
    height: 50px;
    color: rgb(255, 255, 255);
    background-color: rgb(0, 0, 0);
    border: none;
    font-size: 40px;
}

game {
    display: flex;
    justify-content: center;
    min-width: 800px;
    width: 100%;
}

canvas {
    border: 1px solid rgb(255, 255, 255);
    border-radius: 10px;
    background-color: rgb(0, 0, 0);
}