/*WEBSITE DESIGNED BY CELENE ZENTENO! AWESOME!--> */

*{
	margin: 0;
	padding: 0;
}

body{
	background-color: cadetblue;
}

/* HERE ARE MY STYLES FOR MOBILE DEVICES */

	@media screen and (max-width: 479px){

		section#mobile-screen{
			width: 375px;
			height: 627px;
			background-color: red;

		}
	}

/* HERE ARE MY STYLES FOR PHABLET DEVICES */

	@media screen and (min-width:480px) and (max-width: 767px){
		
		section#phablet-screen{
			width:480px;
			height:768px;
			background-color: blue;
		}
	}

/* HERE ARE MY STYLES FOR MAC DEVICES */
	@media screen and (){

		section#original-mac{
			width: 
			height:;
			background-color: yellow;
		}
	}


/* HERE ARE MY STYLES FOR TABLET DEVICES */

 	@media screen and (min-width: 768px) and (max-width: 1365px){

 		section#tablet-screen{
 			width: 768px;
 			height: 1024px;
 			background-color: purple;
 		}
 	}

/* HERE ARE MY STYLES FOR LAPTOP DEVICES */

	@media screen and (min-width: 1366px) and (max-width: 1919px){

		section#laptop-screen{
			width: 1366px;
			height:768px;
			background-color: orange;
		}
	}


/* HERE ARE MY STYLES FOR DESKTOP DEVICES */

	@media screen and (min-width: 1920px){

		section#desktop-screen{
			width:1920px; 
			height:1080px;
			background-color: pink;
		}
	}
