*{
    margin: 0px;
    padding: 0px;
}
body{
    display: flex;
    background-color: black;
    color: white;
    justify-content: center; /* horizontal center */
    align-items: center; /* vertical center */
    height: 100vh;
    background-image: url("./public/checkerboard.png")
}

#codeDisplay{
    font-size: 90px;
}

#gameScreen{
    border: 4px solid white;
    border-radius: 15px;
    background-color: rgb(0,0,0);
    image-rendering: pixelated;
    position: fixed;
}
