While my website looks fine on Chrome and Opera, it appears blurry on Internet Explorer and Firefox. I've tried researching and applying different CSS styles, but nothing seems to work. Both my Firefox and Internet Explorer versions are up to date, and I'm not using Google Font. Here is an example of my styles.
@font-face {
font-family: 'Gotham-Bold';
src: url('../fonts/Gothambold/Gotham-Bold.eot');
src: url('../fonts/Gothambold/Gotham-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Gothambold/Gotham-Bold.woff') format('woff'), url('../fonts/Gothambold/Gotham-Bold.ttf') format('truetype'), url('../fonts/Gothambold/Gotham-Bold.svg#') format('svg');
}
body{
text-rendering: optimizeLegibility;
text-rendering: geometricPrecision;
font-smooth: always;
font-smoothing: antialiased;
-moz-font-smoothing: antialiased;
-webkit-font-smoothing: antialiased;
-webkit-font-smoothing: subpixel-antialiased;
}
View in Firefox: https://i.stack.imgur.com/Vn7iT.png
View in Chrome: https://i.stack.imgur.com/JCHPK.png Despite trying various solutions, I am still facing this issue. Any suggestions?