p {
font-size: 16px;
}
strong {
font-weight: bold;
}
body {
font-family: "Helvetica Neue", Arial, sans-serif;
}
p {
font-weight: 600;
}
em {
font-style: italic;
}
h1 {
line-height: 1.5;
}
@font-face {
font-family: 'CustomFont';
src: url('custom-font.woff2') format('woff2'),
url('custom-font.woff') format('woff');
}
p {
font-family: 'Preferred Font', Arial, sans-serif;
}
p {
font-family: 'Linked Font', sans-serif;
}
.centered-text {
text-align: center;
}
.red-text {
color: #FF0000;
}
.underline-text {
text-decoration: underline;
}
.uppercase-text {
text-transform: uppercase;
}
.letter-spacing {
letter-spacing: 2px;
}
.text-shadowed {
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}