/* Default style for larger screens */
body {
    font-size: 18px;
}

@media (max-width: 768px) {
    /* Style for screens with a maximum width of 768px */
    body {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    /* Style for screens with a maximum width of 480px */
    body {
        font-size: 12px;
    }
}