#stage {
    background-image:url("background.png");
    border: 1px solid black;
    height: 90vh;
	
    width: 100;
    position: relative;
    z-index: 0;
	object-fit: fill;
}

.character {
    /*
     * Very important that we set the height and width of 
     * our characters to the height and width of the sprites
     */
    height:150px;
    width:120px;
    /*
     * We need to position them absolutely so we can have full  
     * control over their position within the stage
     */
    position:absolute;
    left:200px;
    top:460px;
	
	background: white;
	
}
 
#j {
    /*
     * And now we set the background image for the character div 
     * to be the first sprite (in the upper left corner)
     */
    background-image: url('harrison_spritesheet.png');
    background-repeat:no-repeat;
    background-position:0 0;
	
	border-radius: 30%;
	
	box-shadow:
	 0 0 60px 30px #fff,  /* inner white */
    0 0 100px 60px #ffffbf; /* middle magenta */
}