Hello,
You can use media queries in file style.css to reduce font if the screen width is less than given value.
In example, this will decrease paragraph text to 14px if screen width is less than 400px:
@media (max-width: 400px) {
p {
font-size: 14px;
}
}
Best regards,
Milos