* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body 
{
    background-color: rgb(238, 177, 218);
    overflow: hidden;
}

#gameContainer
{
 display: flex;
 height: 100vh;
 position: relative;
 justify-content: center;
 align-items: center;
}

#gameCanvas {
    border: 4px solid #2e2e3e;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
    background: #1a1a2e;
}