/* Tablet text size */
@media only screen and (max-width: 768px) {
body {
font-size: 18px;
}
}
/* Small phone text size */
@media only screen and (max-width: 480px) {
body {
font-size: 20px;
}
}