I had the same problem converting AZW3 -> EPUB for use with Google Play. The issue was that after converting AZW3 -> EPUB (and EPUB -> EPUB) each individual part*.html file still had a font-size style applied to the html element which used rems, for example:
<html xmlns="http://www.w3.org/1999/xhtml" style="font-size:1.136rem;">
I replaced all of these with ems (using sed), rebuilt the book, uploaded to Google Play, and it works fine.
Dave
|