Hi,
The fallback font is Helvetica Neue or Myriad Pro, but your site you have set the font Open Sans.
Please use the Chrome web inspector tool and look at the computed body styles.
The background color of your site is #222222
.
The default font sizes? Please find those within the style.css
file.
body, h1, h2, h3, h4, h5, h6 {
font-family: "Myriad Pro", Arial, Helvetica, Tahoma, sans-serif;
font-weight: 300;
}
h1 {
font-size: 24px;
line-height: 34px;
}
h2 {
font-size: 18px;
line-height: 26px;
}
h3 {
font-size: 14px;
line-height: 18px;
font-weight: normal;
margin-bottom: 15px;
}
h4 {
font-size: 14px;
font-weight: normal;
text-transform: uppercase;
line-height: 18px;
margin-bottom: 15px;
}
h5 {
font-size: 14px;
font-weight: normal;
line-height: 18px;
margin-bottom: 15px;
}
h6 {
font-size: 12px;
font-weight: bold;
line-height: 16px;
margin-bottom: 10px;
}
p {
font-size: 12px;
line-height: 170%;
}
Thanks.