So we bought a blog theme from themeforest. We plan to integrate it to our web app.
Our web app has its own global css, its imported on the _app component. Now, the blog theme also has it's own global css/ class names, ie it has its own margin, font, colors etc. Importing the blogtheme's global css to _app would mean that the two global css would clash.
Basically, the blog page should only use it's own global css. Other pages ie index page, about page, etc. should not use the blog's css
How do we setup our app so we could use two different global css in next js?