
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: rgb(85, 85, 85);
}

#canvas1 {
    border: 5px solid black;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #8db0e4;

    image-rendering: pixelated;
    image-rendering: crisp-edges;

    max-width: 100%;
    max-height: 100%;

    z-index: 1;
}


#missing, #player, #dirt {
    display: none;
}