
body{
	color:red;
	background-color: blueviolet;
}
img {
max-width:100%; 
height:auto;
}

/* these are the styles for screens larger than 576 pixles*/
@media screen and (min-width:1px){ 
	.Impala{
		display:none ;
	}
	.DMC{
		display:none ;
	}
	.Tesla{
		display:flex;
	}
	
}
@media screen and (min-width:1000px){
	.Tesla{
		display:none;
	}
	.Impala{
		display:none ;
	}
	.DMC{
		display:flex ;

}
}
@media screen and (min-width:2000px){
	.Tesla{
		display:none;
	}
	.DMC{
		display:none ;}
	.Impala{
		display:flex ;}

	
}




