
body{
    /*
       Centers the canvas
    */
    display:flex;
    justify-content: flex-start;
    align-items: flex-start;
}
canvas{
    border:2px solid black;
    /*
        !IMPORTANT! Change the source of this image
        
        NOTE: it should only require you to change the file name not the path. 
        NOTE: This path uses ../ 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:0 20px 20px 20px;
    margin-left: 20px;
}
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;
}
