/* Adaptive font & line spacing sizes */
body {
/* Never get smaller than this */
font-size: 14px;
}
@media (min-width:300px) {
body {
font-size: 24px;
}
}
@media (min-width:800px) {
body {
font-size: 20px;
}
}
@media (min-width:1000px) {
body {
/* Never get larger than this */
font-size: 16px;
}
}