Use a span inside parent for the different text and then you can apply styles specific to that span element
span {
color: transparent;
-webkit-text-stroke: 2px orange;
font-style: italic;
}
p {
color: orange;
font-size: 48px;
font-weight: bold;
}
<p>Impact<span>f</span>ull</p>