It's so easy to support bigger screens like tvs and monitors with qhd/ uhd resolutions by adding custom zoom to the body than changing font size/ styles on each page elements. ex.
@media screen and (min-width: 1920px) {
body {
zoom:120%
}
}
@media screen and (min-width: 2560px) {
body {
zoom:160%
}
}
@media screen and (min-width: 3840px) {
body {
zoom: 180%
}
}Thanks