I am having trouble getting my background image to show up on my webpage. I have included a link to a screenshot of my image directory below for reference: image directorydirectory
/*Moto G4, Galaxy S5*/
@media only screen and (min-width: 360px) {
* {
box-sizing: border-box;
}
.game {
width: 360px;
height: 640px;
background-image: url(img/mario.jpg);
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
}