@charset "utf-8";
/* CSS Document */
body{
    background: #4eb5ed;
}
* {
    margin: 0;
    padding: 0;
}
.image{padding: 100px;margin: auto;width: 50%; text-align:center}
.image img{width:70%}

 
/* For Desktop View */
@media screen and (min-width: 1024px) {
   .image{padding: 100px;margin: auto;width: 50%; text-align:center}
.image img{width:70%}

}
 
/* For Tablet View */
@media screen and (min-device-width: 768px)
    and (max-device-width: 1024px) {
    .image{padding: 100px;margin: auto;width: 50%; text-align:center}
.image img{width:70%}

}
 
/* For Mobile Portrait View */
@media screen and (max-device-width: 480px)
    and (orientation: portrait) {
    .image{padding: 100px;margin: auto;width: 50%; text-align:center}
.image img{width:70%}

}
 
/* For Mobile Landscape View */
@media screen and (max-device-width: 640px)
    and (orientation: landscape) {
  .image{padding: 100px;margin: auto;width: 50%; text-align:center}
.image img{width:70%}

}
 
/* For Mobile Phones Portrait or Landscape View */
@media screen
    and (max-device-width: 640px) {
    .image{padding: 100px;margin: auto;width: 50%; text-align:center}
.image img{width:70%}

}
 
/* For iPhone 4 Portrait or Landscape View */
@media screen and (min-device-width: 320px)
    and (-webkit-min-device-pixel-ratio: 2) {
    .image{padding: 0;margin: auto;width: 75%;text-align:center;margin-top: 95px;}
.image img{width: 100%;}

}
 
/* For iPhone 5 Portrait or Landscape View */
@media (device-height: 568px)
    and (device-width: 320px)
    and (-webkit-min-device-pixel-ratio: 2) {
    .image{padding: 100px;margin: auto;width: 50%; text-align:center}
.image img{width:70%}

}
 
/* For iPhone 6 and 6 plus Portrait or Landscape View */
@media (min-device-height: 667px)
    and (min-device-width: 375px)
    and (-webkit-min-device-pixel-ratio: 3) {
   .image{padding: 100px;margin: auto;width: 50%; text-align:center}
.image img{width:70%}

}
