body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
}

.container {
    
    
    text-align: center;
    
}

canvas {
    border: 2px solid #fff;
}

.gameOverScreen {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    z-index: 1;
}

.gameOverText {
    font-size: 24px;
    margin-bottom: 10px;
}

button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 18px;
    background-color: #0095DD;
    color: #fff;
    border: none;
    cursor: pointer;
    outline: none;
}

button:hover {
    background-color: #0077B6;
}


@media screen and (max-width: 1020px) {

    .gameCanvas {
        display: none;
    }

    
       
    }

    

 



@media (orientation: landscape) {}