By using the HTML lang attribute and setting it to "en", I noticed that some of the div fonts and colors were changing to the default ones in Bootstrap. Although I am utilizing the Bliss2 Regular font, the default font style seems to be taking precedence.
.cc-revoke, .cc-window {
position: fixed;
overflow: hidden;
box-sizing: border-box;
**font-family: Helvetica,Calibri,Arial,sans-serif;**
font-size: 16px;
line-height: 1.5em;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
z-index: 9999;
}
Below is an excerpt from my code:
.cc-window {
**font-family: "Bliss Regular";**
font-size: 16px;
text-align: center;
}
I'm curious as to why this issue is occurring and how I can go about resolving it. It seems to only affect certain parts of the design.