
body{
    /*
       Centers the canvas
    */
    display: flex; 
    justify-content: center; /* Center horizontally */ 
    align-items: center;
    overflow: hidden;
    background-color: black;
       
    

}

canvas{
    border:0px solid black;
    background-color: black;
    justify-content: center;
    vertical-align: center;
    align-content: center;
    image-rendering: pixelated;

    
    /*
        !IMPORTANT! Change the source of this image
        
        NOTE: it should only require you to change the file name not the path. 
        NOTE: This pargb(46, 36, 36)es ../ to navigate up one level into the root folder where the "images" folder is located.
    */
    /*background-image: url(../images/mrt.jpg);*/
}
#instructions{
    width:300px;
    padding: 0px 0px 0px;
 
}
h2{
    font-family:Arial, Helvetica, sans-serif;
}
h2 span{
    font-family:Arial, Helvetica, sans-serif;
    font-size:16px;
    font-weight:normal;
}

.game-img{
    /*
       hides all html <img> tags
    */
    display:none;
}
.hidden{
    display:none;
}