* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: none;
}


/* Default font size for mobile devices */
html {
    font-size: 16px;
    /* Default font size for mobile devices */
}

/* Tablet devices, viewport width between 576px and 768px */
@media (min-width: 576px) {
    html {
        font-size: 18px;
        /* Slightly larger font size for tablets */
    }
}

/* PC devices, viewport width greater than 768px */
@media (min-width: 768px) {
    html {
        font-size: 20px;
        /* Larger font size for PCs */
    }
}

/* Larger screens, viewport width greater than 1200px */
@media (min-width: 1200px) {
    html {
        font-size: 22px;
        /* Even larger font size for large screens */
    }
}