<svg width='600' height='200'>
<filter id='money'>
<feMorphology in='SourceGraphic' operator='dilate' radius='2' result='expand'/>
</filter>
<text dominant-baseline='middle' text-anchor='middle' x='50%' y='50%'>
STATES
</text>
</svg>
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:900');
svg {
background: #ebe7e0;
}
text {
fill: #35322a;
filter: url('#money');
font-family: 'Playfair Display', 'Georgia', serif;
font-size: 120px;
font-weight: 900;
}
html {
align-items: center;
background: #ebe7e0;
display: flex;
justify-content: center;
min-height: 100vh;
min-width: 600px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.