﻿/* typical phone screen resolution */
@media only screen and (max-width : 667px) {
    html{
        transform:scale(1);
    }
}
/* landscape orientation */
@media only screen and (min-width : 375px) and (max-width : 667px) and (orientation : landscape) {
}
/* portrait orientation */
@media only screen and (min-width : 375px) and (max-width : 667px) and (orientation : portrait) {
}
