@media handheld and (max-width: 1024px) {
  img {
    height : 128px;
  }
  body {  
    color : blue;
  } 
}
@media handheld and (max-width: 640px) {
  img {
    height : 64px;
  }
  body {  
    color : blue;
  } 
}
@media screen and (max-width: 1024px) {
  img {
    height : 220px;
  } 
  body {  
    color : black;
  } 
}
@media screen and (max-width: 800px) {
  img {
    height : 128px;
  } 
  body {  
    color : black;
  } 
}
