* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,body{
    height: 100%;
    background-color: #222;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

  
canvas {
    border: 0;    
    background-color: #000;/*Disable transparency*/ 
    image-rendering: pixelated;  /* Ensures raw pixel scaling */
    image-rendering: crisp-edges;  /* Fallback for older browsers */
    width:768px;
    cursor:none;
}

.container {
    text-align: center; /* Center button text */
}