<style>
/* 480 768 992 1220 1920 */
@media screen and (min-width: 320px) {
html {
/* background-color: red; */
font-size: 26.66px;
}
}
@media screen and (min-width: 480px) {
html {
/* background-color: beige; */
font-size: 40px;
}
}
@media screen and (min-width: 768px) {
html {
/* background-color: black; */
font-size: 64px;
}
}
@media screen and (min-width: 992px) {
html {
/* background-color: chartreuse; */
font-size: 82.66px;
}
}
@media screen and (min-width: 1200px) {
html {
/* background-color: forestgreen; */
font-size: 100px;
}
}
@media screen and (min-width: 1920px) {
html {
/* background-color: gold; */
font-size: 160px;
}
}
h1 {
font-size: 1rem;
}
</style>
08-16
7715
03-11
1167
08-30
1970
10-10