﻿/* For tablets & smart phones */
@media (max-width: 767px) {
      body {
        padding-left: 20px;
        padding-right: 20px;
      }

}
/* For smartphones */
@media (max-width: 480px) {
}
/* For smaller displays like laptops */
@media (min-width: 768px) and (max-width: 979px) {
}
/* For larger displays */
@media (min-width: 1200px) {
}
/*Target iPhone's screen width*/
@media screen and (max-device-width: 480px){
/*Do not set fixed widths, use %*/
body {
	-webkit-text-size-adjust: none;
}
}
