/* Smartphones (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 300px) 
and (max-device-width : 767px) {
/* Styles */

#box{width:100%;height:800px;}
header{width:100%;height:100px;background:#FF9999;}
/**   header    **/
#layout #header-left{background:pink;width:100%;height:100px;float:left;background: url('th (1).jpeg');background-repeat:no-repeat;background-position:center center;}
#layout #header-right{background:red;width:100%;height:100px;float:left;}
#content{width:100%;height:600px;background:yellow;}
/**   content    **/
#layout #content-left{background:purple;width:100%;height:200px;float:left;background-image: url('aesthetic-desktop-2-e1605818481317.jpg');background-repeat:no-repeat;background-size:cover;color:#C0C0C0;padding-top:200px;font-size:20px;}
#layout #content-right{background:pink;width:100%;height:100px;float:left;background-image: url('desktop-aesthetic-wallpaper-ixpap-1.jpg');background-repeat:no-repeat;color:#99FF00;}

footer{width:100%;height:100px;background:green;}

}

/* Smartphones (landscape) ----------- */
@media only screen 
and (min-width : 321px) {
/* Styles */
}

/* Smartphones (portrait) ----------- */
/* viewport size <= 320px ----------- */
@media only screen 
and (max-width : 320px) {
/* Styles */


}

/* iPads (portrait and landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1224px) {
/* Styles */
#box{width:100%;height:800px;}
header{width:100%;height:100px;background:#FF9999;}
/**   header    **/
#layout #header-left{background:pink;width:100%;height:100px;float:left;background: url('th (1).jpeg');background-repeat:no-repeat;background-position:center center;}
#layout #header-right{background:red;width:100%;height:100px;float:left;}
#content{width:100%;height:600px;background:yellow;}
/**   content    **/
#layout #content-left{background:purple;width:100%;height:200px;float:left;background-image: url('aesthetic-desktop-2-e1605818481317.jpg');background-repeat:no-repeat;background-size:cover;color:#C0C0C0;padding-top:200px;font-size:20px;}
#layout #content-right{background:pink;width:100%;height:100px;float:left;background-image: url('desktop-aesthetic-wallpaper-ixpap-1.jpg');background-repeat:no-repeat;color:#99FF00;}

footer{width:100%;height:100px;background:blue;}
}

/* iPads (landscape) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
/* Styles */
}

/* iPads (portrait) ----------- */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
/* Styles */

}

/* Desktops and laptops ----------- */
@media only screen 
and (min-width : 1224px) {
/* Styles */
#box{margin:50% auto;width:100%;height:800px;}
header{width:100%;height:100px;background:#FF9999;}

/**   header    **/
#layout #header-left{background:pink;width:50%;height:100px;float:left;background: url('th (1).jpeg');background-repeat:no-repeat;background-position:center center;}
#layout #header-right{background:red;width:50%;height:100px;float:left;}

#content{width:100%;height:600px;background:yellow;}
/**   content    **/
#layout #content-left{background:purple;width:70%;height:400px;float:left;background-image: url('aesthetic-desktop-2-e1605818481317.jpg');background-repeat:no-repeat;background-size:cover;color:#C0C0C0;padding-top:200px;font-size:20px;}
#layout #content-right{background:pink;width:30%;height:600px;float:left;background-image: url('desktop-aesthetic-wallpaper-ixpap-1.jpg');background-repeat:no-repeat;color:#99FF00;}

footer{width:100%;height:100px;background:green;}

}

/* Large screens ----------- */
@media only screen 
and (min-width : 1824px) {
/* Styles */

}

/*************** Specific to device if required **********************/
/* stolen from http://nmsdvid.com/snippets/ **************************/

/* iPhone 4 ----------- */
@media only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
/* Styles */
	
}

/* iPhone5 ------------- */
@media screen and (device-aspect-ratio: 40/71) {
	/* Styles */

}
or
@media screen and (device-width: 320px) and (device-height: 568px) and (-webkit-device-pixel-ratio: 2){
/* Styles */

}

/* Blackberry Torch ---------- */
@media screen and (max-device-width: 480px) { 
}

/* Samsung S3 ---------------- */
@media only screen and (-webkit-device-pixel-ratio: 2) {
}

/* Google Nexus 7 ------------- */
@media screen and (device-width: 600px) and (device-height: 905px) and (-webkit-min-device-pixel-ratio: 1.331) and (-webkit-max-device-pixel-ratio: 1.332) {
}

/* iPad Mini ------------------ */
@media screen and (device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 1) {
}

/* iPad 3 (Landscape)-------------------- */
@media (max-device-width: 1024px) and (orientation: landscape) { 
}

/* iPad 3 (portrait)-------------------- */
@media (max-device-width: 768px) and (orientation: portrait) { 
}

/* Galaxy Tab 10.1 (Landscape) -------- */
@media (max-device-width: 1280px) and (orientation: landscape) { 
}

/* Galaxy Tab 10.1 (Portrait) -------- */
@media (max-device-width: 800px) and (orientation: portrait) { 
}

/* Retina images ---------------------- */
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) {
 
  /* Retina replacement CSS here */
 
}




