/* 1 - Смартфоны (Портрет и ландшафтный)*/
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    font-size: 16px;
}

/* 2 - Смартфоны (ландшафтный)*/
@media only screen and (min-width : 321px) {
    font-size: 16px;
}
 
/* 3 - Смартфоны (portrait)*/
@media only screen and (max-width : 320px) {
    font-size: 16px;
}
 
/* 4 -iPads (Портрет и Ландшафтный)*/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
    font-size: 18px;
}
 
/* 5 - iPads (Ландшафтный)*/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
    font-size: 18px;
}
 
/* 6 - iPads (Портрет)*/
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
    font-size: 18px;
}
 
/* 7 -Настольные компьютеры и ноутбуки*/
@media only screen and (min-width : 1224px) {
    font-size: 20px;
}
 
/* 8 - Большие экраны*/
@media only screen and (min-width : 1824px) {
    font-size: 22px;
}
 
/* 9 - iPhone 4 */
@media only screen and (-webkit-min-device-pixel-ratio : 1.5),only screen and (min-device-pixel-ratio : 1.5) {
    font-size: 16px;
}
