/*CUSTOM MEDIA QUERIES */

body{
	 
}

/* #1- Large desktop */
@media (min-width: 1200px) { 

#mascherina {
height: 50px;
width: 50%;
margin-left: 30px;
}

}

/* #3- Regular sized laptops */
@media (min-width: 980px) and (max-width: 1199px) { 

#mascherina {
height: 55px;
width: 50%;
margin-left: 15px;
}

 }

/* #3- Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {

	#mascherina  {
		height: 55px;
		width: 62% ;
	}

 }

/* #4- Landscape phone to portrait tablet */
@media (min-width: 481px) and (max-width: 767px) { 

	 #mascherina  {
		height: 85px ;
		width: 100% ;
	}



}

/* #5- Landscape phones and down */
@media (max-width: 480px) { 

	 #mascherina  {
		height: 115px ;
		width: 100% ;
	}


}


