I want first letter of all words to be little bigger than rest
<style>
h1 {
color: #1c1c1d;
font-family: 'Raleway',sans-serif;
font-size: 27px;
font-weight: normal;
margin: -2px 0px 0px;
text-align: center;
display:inline;
text-shadow: 1px 1px 2px #082b34;
}
h1::first-letter {
font-size: 125%;
}
</style>
<h1> WELCOME TO HOMEPAGE </h1>
But this only increasing the 'W' in WELCOME.
If possible with use of <span>