body{padding:0;margin:0;width:100vw;height:100vh}

.mobile{display:none}
.mobile,.desktop{width:100vw;height:100vh;justify-content:center;align-items:center;overflow:hidden;}
.desktop{display:flex;}
.desktop img,.mobile img{object-fit: contain;}
.mobile img{width:100%;}
@media (max-width:600px){
	
	.mobile{display:block;}
	.desktop{display:none;}
	
}