/* Default font size for the root element */
html, html body {
    font-size: 14px !important;
}

/* Prevent iOS bounce/rubber-banding effect when scrolling */
html, body {
    overscroll-behavior: none;
    -webkit-overflow-scrolling: touch;
}

/* Scale down font size on mobile, which scales everything using rem units */
@media (max-width: 580px) {
    html, html body {
        font-size: 13px !important;
    }
}

/* Scale down font size on mobile, which scales everything using rem units */
@media (max-width: 480px) {
    html, html body {
        font-size: 12px !important;
    }
}
